mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 09:35:34 +00:00
add backport_collections, tweaks to setup.py.
This commit is contained in:
23
setup.py
23
setup.py
@@ -1,7 +1,7 @@
|
|||||||
##!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
from setuptools.command.test import test as TestCommand
|
from setuptools.command.test import test as TestCommand
|
||||||
|
|
||||||
|
|
||||||
@@ -28,20 +28,9 @@ setup(
|
|||||||
author='Kevin McCarthy',
|
author='Kevin McCarthy',
|
||||||
author_email='me@kevinmccarthy.org',
|
author_email='me@kevinmccarthy.org',
|
||||||
url='https://github.com/kevin1024/vcrpy',
|
url='https://github.com/kevin1024/vcrpy',
|
||||||
packages=[
|
packages=find_packages(exclude=("tests*",)),
|
||||||
'vcr',
|
install_requires=['PyYAML', 'mock', 'six', 'contextlib2',
|
||||||
'vcr.stubs',
|
'wrapt', 'backport_collections'],
|
||||||
'vcr.compat',
|
|
||||||
'vcr.persisters',
|
|
||||||
'vcr.serializers',
|
|
||||||
],
|
|
||||||
package_dir={
|
|
||||||
'vcr': 'vcr',
|
|
||||||
'vcr.stubs': 'vcr/stubs',
|
|
||||||
'vcr.compat': 'vcr/compat',
|
|
||||||
'vcr.persisters': 'vcr/persisters',
|
|
||||||
},
|
|
||||||
install_requires=['PyYAML', 'mock', 'six', 'contextlib2', 'wrapt'],
|
|
||||||
license='MIT',
|
license='MIT',
|
||||||
tests_require=['pytest', 'mock', 'pytest-localserver'],
|
tests_require=['pytest', 'mock', 'pytest-localserver'],
|
||||||
cmdclass={'test': PyTest},
|
cmdclass={'test': PyTest},
|
||||||
@@ -54,5 +43,5 @@ setup(
|
|||||||
'Topic :: Software Development :: Testing',
|
'Topic :: Software Development :: Testing',
|
||||||
'Topic :: Internet :: WWW/HTTP',
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
],
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user