aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 038e816a..80eb2b06 100644
--- a/setup.py
+++ b/setup.py
@@ -65,8 +65,9 @@ def findPackages(path, dataExclude=[]):
package_data[module] = acc
return packages, package_data
+with open("README.txt", "rb") as f:
+ long_description = f.read()
-long_description = file("README.txt", "rb").read()
packages, package_data = findPackages("libpathod")
setup(
name="pathod",
@@ -93,7 +94,7 @@ setup(
],
install_requires=[
'netlib>=%s' % version.MINORVERSION,
- "requests>=1.1.0",
+ "requests>=2.4.0",
"Flask>=0.10.1"
],
extras_require={