diff options
| author | Andrey Petrov <andrey.petrov@shazow.net> | 2011-09-27 20:54:27 -0700 |
|---|---|---|
| committer | Andrey Petrov <andrey.petrov@shazow.net> | 2011-09-27 20:54:27 -0700 |
| commit | e0b0a85ba014b0186d8702cd492afa26c593582c (patch) | |
| tree | 5b3455fb1413439e6ea28203d2dac89b9cb74abb /setup.py | |
| parent | 269d030fc2adef2ace5b1fa08fc40f1664084994 (diff) | |
| download | urllib3-e0b0a85ba014b0186d8702cd492afa26c593582c.tar.gz | |
Functional tests with gunicorn, one test still stalling.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,6 +1,7 @@ #!/usr/bin/env python from distutils.core import setup +import sys try: @@ -10,9 +11,14 @@ except ImportError, _: version = '0.5' - long_description = open('README.txt').read() +requirements = [] +tests_requirements = requirements + [ + 'nose', + 'eventlet' +] + setup(name='urllib3', version=version, description="HTTP library with thread-safe connection pooling and file post support", @@ -33,4 +39,6 @@ setup(name='urllib3', download_url='http://urllib3.googlecode.com/files/urllib3-0.5.tar.gz', license='MIT', packages=['urllib3'], + requires=requirements, + tests_require=tests_requirements, ) |
