1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00
Files
vcrpy/setup.py
Kevin McCarthy 41da9ddbab Add Support for Requests Library
Added support and tests for the Requests library.  At least basic
support seems to be working.  The tests should run fine if you
don't have requests installed; it just won't verify the requests-
specific tests.
2012-09-16 12:29:45 -10:00

12 lines
233 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(name='VCR.py',
version='1.0',
description='VCR.py',
author='Kevin McCarthy',
author_email='mc@kevinmccarthy.org',
packages=['vcr'],
)