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

@@ -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'],