diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-08-19 15:29:37 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-08-19 15:29:37 +0200 |
commit | 534c66644fa7749d48a7e5dcac5e064413520e95 (patch) | |
tree | dbba4197cd7c0935d7f24524702436b3b4dd11c7 | |
parent | 5d5471e429047a3c1cf196c4d2216610a8909b85 (diff) | |
download | mitmproxy-534c66644fa7749d48a7e5dcac5e064413520e95.tar.gz mitmproxy-534c66644fa7749d48a7e5dcac5e064413520e95.tar.bz2 mitmproxy-534c66644fa7749d48a7e5dcac5e064413520e95.zip |
only require the minor version of netlib to match
-rw-r--r-- | libpathod/version.py | 3 | ||||
-rw-r--r-- | setup.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/libpathod/version.py b/libpathod/version.py index 43844ed8..a61e441a 100644 --- a/libpathod/version.py +++ b/libpathod/version.py @@ -1,4 +1,5 @@ IVERSION = (0, 10) VERSION = ".".join(str(i) for i in IVERSION) +MINORVERSION = ".".join(str(i) for i in IVERSION[:2]) NAME = "pathod" -NAMEVERSION = NAME + " " + VERSION +NAMEVERSION = NAME + " " + VERSION
\ No newline at end of file @@ -83,11 +83,12 @@ setup( "Development Status :: 5 - Production/Stable", "Operating System :: POSIX", "Programming Language :: Python", + "Programming Language :: Python :: 2", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", "Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing :: Traffic Generation", "Topic :: Internet :: WWW/HTTP", ], - install_requires=['netlib>=%s'%version.VERSION, "requests>=1.1.0", "flask"], + install_requires=['netlib>=%s'%version.MINORVERSION, "requests>=1.1.0", "Flask>=0.10.1"] ) |