mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 17:45:35 +00:00
Add new subdirectories in setup.py. Closes #26. Bumps version
This commit is contained in:
@@ -159,6 +159,7 @@ This library is a work in progress, so the API might change on you.
|
|||||||
There are probably some [bugs](https://github.com/kevin1024/vcrpy/issues?labels=bug&page=1&state=open) floating around too.
|
There are probably some [bugs](https://github.com/kevin1024/vcrpy/issues?labels=bug&page=1&state=open) floating around too.
|
||||||
|
|
||||||
##Changelog
|
##Changelog
|
||||||
|
* 0.2.1: Fixed missing modules in setup.py
|
||||||
* 0.2.0: Added configuration API, which lets you configure some settings
|
* 0.2.0: Added configuration API, which lets you configure some settings
|
||||||
on VCR (see the README). Also, VCR no longer saves cassettes if they
|
on VCR (see the README). Also, VCR no longer saves cassettes if they
|
||||||
haven't changed at all and supports JSON as well as YAML
|
haven't changed at all and supports JSON as well as YAML
|
||||||
|
|||||||
15
setup.py
15
setup.py
@@ -19,17 +19,24 @@ class PyTest(TestCommand):
|
|||||||
sys.exit(errno)
|
sys.exit(errno)
|
||||||
|
|
||||||
setup(name='vcrpy',
|
setup(name='vcrpy',
|
||||||
version='0.2.0',
|
version='0.2.1',
|
||||||
description="A Python port of Ruby's VCR to make mocking HTTP easier",
|
description="A Python port of Ruby's VCR to make mocking HTTP easier",
|
||||||
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 = [
|
||||||
'vcr',
|
'vcr',
|
||||||
'vcr.stubs'],
|
'vcr.stubs',
|
||||||
|
'vcr.compat',
|
||||||
|
'vcr.persisters',
|
||||||
|
'vcr.serializers',
|
||||||
|
],
|
||||||
package_dir={
|
package_dir={
|
||||||
'vcr': 'vcr',
|
'vcr': 'vcr',
|
||||||
'vcr.stubs': 'vcr/stubs'},
|
'vcr.stubs': 'vcr/stubs',
|
||||||
|
'vcr.compat': 'vcr/compat',
|
||||||
|
'vcr.persisters': 'vcr/persisters',
|
||||||
|
},
|
||||||
install_requires=['PyYAML'],
|
install_requires=['PyYAML'],
|
||||||
license='MIT',
|
license='MIT',
|
||||||
tests_require=['pytest'],
|
tests_require=['pytest'],
|
||||||
|
|||||||
Reference in New Issue
Block a user