diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2011-01-25 15:02:48 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2011-01-25 15:02:48 +1300 |
commit | 7983dbb26a023db149a6e3e91f19fc7171680534 (patch) | |
tree | 9c4b978ec02c199c60b066aab202592942ebf272 /setup.py | |
parent | b8d8030abd3c5e8111d85cf7e7700a3985f8eb09 (diff) | |
download | mitmproxy-7983dbb26a023db149a6e3e91f19fc7171680534.tar.gz mitmproxy-7983dbb26a023db149a6e3e91f19fc7171680534.tar.bz2 mitmproxy-7983dbb26a023db149a6e3e91f19fc7171680534.zip |
Abstract flow management out of the interactive code.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,6 @@ from distutils.core import setup import fnmatch, os.path +from libmproxy import VERSION def _fnmatch(name, patternList): for i in patternList: @@ -68,10 +69,9 @@ def findPackages(path, dataExclude=[]): long_description = file("README").read() packages, package_data = findPackages("libmproxy") -version = "0.2" setup( name = "mitmproxy", - version = version, + version = VERSION, description = "An interactive SSL-capable intercepting HTTP proxy for penetration testers and software developers.", long_description = long_description, author = "Aldo Cortesi", |