be more explicit about requirements

This commit is contained in:
Maximilian Hils 2014-11-11 12:28:08 +01:00
parent 60e3e0b898
commit b917b61e6a
2 changed files with 6 additions and 2 deletions

View File

@ -2,4 +2,8 @@ IVERSION = (0, 11)
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
NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])

View File

@ -44,7 +44,7 @@ setup(
},
install_requires=[
'netlib>=%s' % version.MINORVERSION,
"netlib>=%s, <%s" % (version.MINORVERSION, version.NEXT_MINORVERSION),
"requests>=2.4.1",
"Flask>=0.10.1"
],