2014-10-01 18:41:58 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from codecs import open
|
|
|
|
import os
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2016-07-10 11:38:49 +00:00
|
|
|
from netlib import version
|
|
|
|
|
2014-10-01 18:41:58 +00:00
|
|
|
# Based on https://github.com/pypa/sampleproject/blob/master/setup.py
|
|
|
|
# and https://python-packaging-user-guide.readthedocs.org/
|
2014-01-19 03:06:03 +00:00
|
|
|
|
2014-10-01 18:41:58 +00:00
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
2014-01-19 03:06:03 +00:00
|
|
|
|
2015-09-16 01:59:06 +00:00
|
|
|
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
|
2014-08-29 16:18:52 +00:00
|
|
|
long_description = f.read()
|
2014-09-08 22:06:10 +00:00
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
setup(
|
2014-09-08 22:06:10 +00:00
|
|
|
name="mitmproxy",
|
|
|
|
version=version.VERSION,
|
|
|
|
description="An interactive, SSL-capable, man-in-the-middle HTTP proxy for penetration testers and software developers.",
|
|
|
|
long_description=long_description,
|
2014-10-01 18:41:58 +00:00
|
|
|
url="http://mitmproxy.org",
|
2014-09-08 22:06:10 +00:00
|
|
|
author="Aldo Cortesi",
|
|
|
|
author_email="aldo@corte.si",
|
2014-10-01 18:41:58 +00:00
|
|
|
license="MIT",
|
2014-09-08 22:06:10 +00:00
|
|
|
classifiers=[
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Environment :: Console :: Curses",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
"Operating System :: POSIX",
|
2016-02-18 12:03:40 +00:00
|
|
|
"Operating System :: Microsoft :: Windows",
|
2014-09-08 22:06:10 +00:00
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 2",
|
2014-10-01 18:41:58 +00:00
|
|
|
"Programming Language :: Python :: 2.7",
|
2016-07-09 08:29:12 +00:00
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
2015-02-07 00:17:24 +00:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
2014-09-08 22:06:10 +00:00
|
|
|
"Topic :: Security",
|
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
"Topic :: Internet :: Proxy Servers",
|
2015-09-07 14:05:16 +00:00
|
|
|
"Topic :: Software Development :: Testing"
|
|
|
|
],
|
2016-02-18 12:03:40 +00:00
|
|
|
packages=find_packages(include=[
|
|
|
|
"mitmproxy", "mitmproxy.*",
|
|
|
|
"pathod", "pathod.*",
|
|
|
|
"netlib", "netlib.*"
|
|
|
|
]),
|
2014-10-01 18:41:58 +00:00
|
|
|
include_package_data=True,
|
2015-02-27 13:43:23 +00:00
|
|
|
entry_points={
|
2016-02-04 17:37:58 +00:00
|
|
|
'console_scripts': [
|
2016-02-18 12:03:40 +00:00
|
|
|
"mitmproxy = mitmproxy.main:mitmproxy",
|
|
|
|
"mitmdump = mitmproxy.main:mitmdump",
|
|
|
|
"mitmweb = mitmproxy.main:mitmweb",
|
|
|
|
"pathod = pathod.pathod_cmdline:go_pathod",
|
|
|
|
"pathoc = pathod.pathoc_cmdline:go_pathoc"
|
2016-02-04 17:37:58 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
# https://packaging.python.org/en/latest/requirements/#install-requires
|
|
|
|
# It is not considered best practice to use install_requires to pin dependencies to specific versions.
|
|
|
|
install_requires=[
|
2016-02-18 12:03:40 +00:00
|
|
|
"backports.ssl_match_hostname>=3.5.0.1, <3.6",
|
2016-02-05 21:59:24 +00:00
|
|
|
"blinker>=1.4, <1.5",
|
2016-02-18 12:03:40 +00:00
|
|
|
"click>=6.2, <7.0",
|
|
|
|
"certifi>=2015.11.20.1", # no semver here - this should always be on the last release!
|
|
|
|
"configargparse>=0.10, <0.11",
|
2016-02-05 21:59:24 +00:00
|
|
|
"construct>=2.5.2, <2.6",
|
2016-06-05 05:04:24 +00:00
|
|
|
"cryptography>=1.3, <1.5",
|
2016-06-29 09:08:16 +00:00
|
|
|
"Flask>=0.10.1, <0.12",
|
2016-06-12 10:21:19 +00:00
|
|
|
"h2>=2.4.0, <3",
|
2016-06-29 09:08:16 +00:00
|
|
|
"html2text>=2016.1.8, <=2016.5.29",
|
2016-05-12 19:01:54 +00:00
|
|
|
"hyperframe>=4.0.1, <5",
|
2016-07-26 02:40:07 +00:00
|
|
|
"lxml>=3.5.0, <=3.6.0", # no wheels for 3.6.1 yet.
|
2016-07-10 11:38:49 +00:00
|
|
|
"Pillow>=3.2, <3.4",
|
2016-02-18 12:03:40 +00:00
|
|
|
"passlib>=1.6.5, <1.7",
|
|
|
|
"pyasn1>=0.1.9, <0.2",
|
2016-03-19 19:09:00 +00:00
|
|
|
"pyOpenSSL>=16.0, <17.0",
|
2016-06-06 20:29:39 +00:00
|
|
|
"pyparsing>=2.1.3, <2.2",
|
2016-02-18 12:03:40 +00:00
|
|
|
"pyperclip>=1.5.22, <1.6",
|
2016-06-29 09:08:16 +00:00
|
|
|
"requests>=2.9.1, <2.11",
|
2016-02-18 12:03:40 +00:00
|
|
|
"six>=1.10, <1.11",
|
2016-07-26 04:52:34 +00:00
|
|
|
"tornado>=4.3, <4.5",
|
2016-02-05 21:59:24 +00:00
|
|
|
"urwid>=1.3.1, <1.4",
|
2016-02-18 12:03:40 +00:00
|
|
|
"watchdog>=0.8.3, <0.9",
|
2016-02-04 17:37:58 +00:00
|
|
|
],
|
2014-09-08 22:06:10 +00:00
|
|
|
extras_require={
|
2016-02-04 17:37:58 +00:00
|
|
|
':sys_platform == "win32"': [
|
2016-02-18 12:03:40 +00:00
|
|
|
"pydivert>=0.0.7, <0.1",
|
2016-02-04 17:37:58 +00:00
|
|
|
],
|
|
|
|
':sys_platform != "win32"': [
|
|
|
|
],
|
2016-02-04 17:44:40 +00:00
|
|
|
# Do not use a range operator here: https://bitbucket.org/pypa/setuptools/issues/380
|
|
|
|
# Ubuntu Trusty and other still ship with setuptools < 17.1
|
|
|
|
':python_version == "2.7"': [
|
2016-02-18 10:25:29 +00:00
|
|
|
"enum34>=1.0.4, <2",
|
2016-02-18 12:03:40 +00:00
|
|
|
"ipaddress>=1.0.15, <1.1",
|
2016-06-29 10:03:23 +00:00
|
|
|
"typing==3.5.2.2",
|
2016-02-04 17:37:58 +00:00
|
|
|
],
|
|
|
|
'dev': [
|
2016-06-07 07:17:15 +00:00
|
|
|
"tox>=2.3, <3",
|
2016-05-29 10:03:29 +00:00
|
|
|
"mock>=2.0, <2.1",
|
2016-07-10 11:38:49 +00:00
|
|
|
"pytest>=2.8.7, <3",
|
|
|
|
"pytest-cov>=2.2.1, <3",
|
|
|
|
"pytest-timeout>=1.0.0, <2",
|
|
|
|
"pytest-xdist>=1.14, <2",
|
2016-04-03 15:16:10 +00:00
|
|
|
"sphinx>=1.3.5, <1.5",
|
2016-02-15 23:22:38 +00:00
|
|
|
"sphinx-autobuild>=0.5.2, <0.7",
|
2016-06-29 05:06:08 +00:00
|
|
|
"sphinxcontrib-documentedlist>=0.4.0, <0.5",
|
2016-04-03 15:36:02 +00:00
|
|
|
"sphinx_rtd_theme>=0.1.9, <0.2",
|
2016-02-04 17:37:58 +00:00
|
|
|
],
|
2014-09-08 22:06:10 +00:00
|
|
|
'contentviews': [
|
2016-02-18 12:03:40 +00:00
|
|
|
"cssutils>=1.0.1, <1.1",
|
2016-07-26 07:58:09 +00:00
|
|
|
"jsbeautifier>=1.6.3"
|
2016-06-29 02:44:25 +00:00
|
|
|
# TODO: Find Python 3 replacements
|
|
|
|
# "protobuf>=2.6.1, <2.7",
|
|
|
|
# "pyamf>=0.8.0, <0.9",
|
2015-09-07 14:05:16 +00:00
|
|
|
],
|
2016-02-04 17:37:58 +00:00
|
|
|
'examples': [
|
2016-07-26 04:52:34 +00:00
|
|
|
"beautifulsoup4>=4.4.1, <4.6",
|
2016-02-18 12:03:40 +00:00
|
|
|
"harparser>=0.2, <0.3",
|
2016-07-26 04:52:34 +00:00
|
|
|
"pytz>=2015.07.0, <=2016.6.1",
|
2016-02-04 17:37:58 +00:00
|
|
|
]
|
2015-09-07 14:05:16 +00:00
|
|
|
}
|
|
|
|
)
|