mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2025-01-31 15:28:50 +00:00
only require the minor version of netlib to match
This commit is contained in:
parent
5d5471e429
commit
534c66644f
@ -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
|
3
setup.py
3
setup.py
@ -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"]
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user