only require the minor version of netlib to match

This commit is contained in:
Maximilian Hils 2014-08-19 15:29:37 +02:00
parent 5d5471e429
commit 534c66644f
2 changed files with 4 additions and 2 deletions

View File

@ -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

View 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"]
)