1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Add new subdirectories in setup.py. Closes #26. Bumps version

This commit is contained in:
Kevin McCarthy
2013-08-30 08:01:30 -10:00
parent e1c7eb1ec5
commit 07774ae6dd
2 changed files with 12 additions and 4 deletions

View File

@@ -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.
##Changelog
* 0.2.1: Fixed missing modules in setup.py
* 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
haven't changed at all and supports JSON as well as YAML

View File

@@ -19,17 +19,24 @@ class PyTest(TestCommand):
sys.exit(errno)
setup(name='vcrpy',
version='0.2.0',
version='0.2.1',
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=[
packages = [
'vcr',
'vcr.stubs'],
'vcr.stubs',
'vcr.compat',
'vcr.persisters',
'vcr.serializers',
],
package_dir={
'vcr': 'vcr',
'vcr.stubs': 'vcr/stubs'},
'vcr.stubs': 'vcr/stubs',
'vcr.compat': 'vcr/compat',
'vcr.persisters': 'vcr/persisters',
},
install_requires=['PyYAML'],
license='MIT',
tests_require=['pytest'],