Sync version number with mitmproxy.

This commit is contained in:
Aldo Cortesi 2013-03-05 09:09:33 +13:00
parent 110a8bb594
commit beb47eba51
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
IVERSION = (0, 3, 0)
IVERSION = (0, 9)
VERSION = ".".join(str(i) for i in IVERSION)
NAME = "pathod"
NAMEVERSION = NAME + " " + VERSION

View File

@ -89,5 +89,5 @@ setup(
"Topic :: Software Development :: Testing :: Traffic Generation",
"Topic :: Internet :: WWW/HTTP",
],
install_requires=['netlib>=0.2.2', "requests>=1.1.0", "flask"],
install_requires=['netlib>=%s'%version.VERSION, "requests>=1.1.0", "flask"],
)