mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-11 01:53:01 +00:00
update setup.py
This commit is contained in:
36
setup.py
36
setup.py
@@ -1,11 +1,35 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from distutils.core import setup
|
import sys
|
||||||
|
from setuptools import setup
|
||||||
|
from setuptools.command.test import test as TestCommand
|
||||||
|
|
||||||
setup(name='VCR.py',
|
class PyTest(TestCommand):
|
||||||
version='1.0',
|
def finalize_options(self):
|
||||||
description='VCR.py',
|
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='Kevin McCarthy',
|
||||||
author_email='mc@kevinmccarthy.org',
|
author_email='me@kevinmccarthy.org',
|
||||||
|
url='https://github.com/kevin1024/vcrpy',
|
||||||
packages=['vcr'],
|
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',
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user