1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00

Fix use_cassette decorator in python 2 by using wrapt.decorator. Add wrapt as dependency.

This commit is contained in:
Ivan Malison
2014-09-22 16:40:09 -07:00
parent 3dea853482
commit b046ee4bb1
3 changed files with 28 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ setup(
'vcr.compat': 'vcr/compat',
'vcr.persisters': 'vcr/persisters',
},
install_requires=['PyYAML', 'mock', 'six', 'contextlib2'],
install_requires=['PyYAML', 'mock', 'six', 'contextlib2', 'wrapt'],
license='MIT',
tests_require=['pytest', 'mock', 'pytest-localserver'],
cmdclass={'test': PyTest},