Skip to content

Commit

Permalink
add better pypi classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin1024 committed Feb 22, 2013
1 parent e039181 commit 2db5664
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions setup.py
Expand Up @@ -4,32 +4,38 @@
from setuptools import setup
from setuptools.command.test import test as TestCommand


class PyTest(TestCommand):

def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True

def run_tests(self):
#import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)

setup(name='vcrpy',
version='0.0.2',
description="A Python port of Ruby's VCR to make mocking HTTP easier",
author='Kevin McCarthy',
author_email='me@kevinmccarthy.org',
url='https://github.com/kevin1024/vcrpy',
packages=['vcr'],
install_requires=['PyYAML'],
license='MIT',
tests_require=['pytest'],
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
],
version='0.0.2',
description="A Python port of Ruby's VCR to make mocking HTTP easier",
author='Kevin McCarthy',
author_email='me@kevinmccarthy.org',
url='https://github.com/kevin1024/vcrpy',
packages=['vcr'],
install_requires=['PyYAML'],
license='MIT',
tests_require=['pytest'],
cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: MIT License',
],
)

0 comments on commit 2db5664

Please sign in to comment.