diff options
-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"] ) |