setup.py updates.
This commit is contained in:
parent
cb0e328709
commit
3349734005
19
setup.py
19
setup.py
|
@ -66,32 +66,25 @@ def findPackages(path, dataExclude=[]):
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
long_description = """
|
long_description = file("README").read()
|
||||||
A man-in-the-middle intercepting proxy written in Python.
|
|
||||||
|
|
||||||
Features
|
|
||||||
========
|
|
||||||
|
|
||||||
* Intercept HTTP and HTTPS traffic.
|
|
||||||
* Modify, manipulate and replay requests and responses on the fly.
|
|
||||||
"""
|
|
||||||
packages, package_data = findPackages("libmproxy")
|
packages, package_data = findPackages("libmproxy")
|
||||||
print packages, package_data
|
|
||||||
version = "0.1"
|
version = "0.1"
|
||||||
setup(
|
setup(
|
||||||
name = "mitmproxy",
|
name = "mitmproxy",
|
||||||
version = version,
|
version = version,
|
||||||
description = "An interactive intercepting proxy server.",
|
description = "An interactive SSL-capable intercepting HTTP proxy for penetration testers and software developers.",
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
author = "Aldo Cortesi",
|
author = "Aldo Cortesi",
|
||||||
author_email = "aldo@corte.si",
|
author_email = "aldo@corte.si",
|
||||||
url = "http://corte.si/software/mitmproxy",
|
url = "http://corte.si/software",
|
||||||
packages = packages,
|
packages = packages,
|
||||||
package_data = package_data,
|
package_data = package_data,
|
||||||
scripts = ["mitmproxy"],
|
scripts = ["mitmproxy"],
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Operating System :: OS Independent",
|
"Topic :: Security",
|
||||||
|
"Topic :: Internet :: WWW/HTTP",
|
||||||
|
"Topic :: Software Development :: Testing"
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue