summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAndrey Petrov <andrey.petrov@shazow.net>2011-09-27 20:54:27 -0700
committerAndrey Petrov <andrey.petrov@shazow.net>2011-09-27 20:54:27 -0700
commite0b0a85ba014b0186d8702cd492afa26c593582c (patch)
tree5b3455fb1413439e6ea28203d2dac89b9cb74abb /setup.py
parent269d030fc2adef2ace5b1fa08fc40f1664084994 (diff)
downloadurllib3-e0b0a85ba014b0186d8702cd492afa26c593582c.tar.gz
Functional tests with gunicorn, one test still stalling.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 23f1d240..1a62a3a2 100644
--- a/setup.py
+++ b/setup.py
@@ -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,
)