2014-10-01 18:41:58 +00:00
|
|
|
import os
|
2016-12-11 16:50:46 +00:00
|
|
|
from codecs import open
|
2010-02-16 04:09:07 +00:00
|
|
|
|
2017-12-30 16:54:23 +00:00
|
|
|
import re
|
2016-12-11 16:50:46 +00:00
|
|
|
from setuptools import setup, find_packages
|
2016-07-10 11:38:49 +00:00
|
|
|
|
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
|
|
|
|
2017-12-30 16:54:23 +00:00
|
|
|
with open(os.path.join(here, "mitmproxy", "version.py")) as f:
|
2019-11-16 13:56:01 +00:00
|
|
|
match = re.search(r'VERSION = "(.+?)"', f.read())
|
|
|
|
assert match
|
|
|
|
VERSION = match.group(1)
|
2016-12-11 16:50:46 +00:00
|
|
|
|
2010-02-16 04:09:07 +00:00
|
|
|
setup(
|
2014-09-08 22:06:10 +00:00
|
|
|
name="mitmproxy",
|
2016-12-11 16:50:46 +00:00
|
|
|
version=VERSION,
|
2018-09-15 11:54:18 +00:00
|
|
|
description="An interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets.",
|
2014-09-08 22:06:10 +00:00
|
|
|
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 :: Curses",
|
2019-12-16 02:10:32 +00:00
|
|
|
"Operating System :: MacOS",
|
2014-09-08 22:06:10 +00:00
|
|
|
"Operating System :: POSIX",
|
2016-02-18 12:03:40 +00:00
|
|
|
"Operating System :: Microsoft :: Windows",
|
2016-10-17 05:41:47 +00:00
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
2018-06-28 08:18:28 +00:00
|
|
|
"Programming Language :: Python :: 3.7",
|
2019-12-16 02:10:32 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2015-02-07 00:17:24 +00:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
2014-09-08 22:06:10 +00:00
|
|
|
"Topic :: Security",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
"Topic :: Internet :: Proxy Servers",
|
2019-12-16 02:10:32 +00:00
|
|
|
"Topic :: System :: Networking :: Monitoring",
|
|
|
|
"Topic :: Software Development :: Testing",
|
2019-12-29 12:19:39 +00:00
|
|
|
"Typing :: Typed",
|
2015-09-07 14:05:16 +00:00
|
|
|
],
|
2016-02-18 12:03:40 +00:00
|
|
|
packages=find_packages(include=[
|
|
|
|
"mitmproxy", "mitmproxy.*",
|
|
|
|
"pathod", "pathod.*",
|
|
|
|
]),
|
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-10-19 02:25:39 +00:00
|
|
|
"mitmproxy = mitmproxy.tools.main:mitmproxy",
|
|
|
|
"mitmdump = mitmproxy.tools.main:mitmdump",
|
|
|
|
"mitmweb = mitmproxy.tools.main:mitmweb",
|
2016-02-18 12:03:40 +00:00
|
|
|
"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-05 21:59:24 +00:00
|
|
|
"blinker>=1.4, <1.5",
|
2019-05-27 08:10:18 +00:00
|
|
|
"Brotli>=1.0,<1.1",
|
2019-09-28 10:29:07 +00:00
|
|
|
"certifi>=2019.9.11", # no semver here - this should always be on the last release!
|
2019-10-06 12:00:02 +00:00
|
|
|
"click>=7.0,<8",
|
2020-04-03 09:01:24 +00:00
|
|
|
"cryptography>=2.9,<3.0",
|
2019-10-06 12:41:46 +00:00
|
|
|
"flask>=1.1.1,<1.2",
|
2020-02-08 16:55:49 +00:00
|
|
|
"h2>=3.2.0,<4",
|
2018-01-27 10:21:03 +00:00
|
|
|
"hyperframe>=5.1.0,<6",
|
2018-02-07 12:06:29 +00:00
|
|
|
"kaitaistruct>=0.7,<0.9",
|
2020-04-03 15:46:34 +00:00
|
|
|
"ldap3>=2.6.1,<2.8",
|
2020-07-21 14:30:35 +00:00
|
|
|
"msgpack>=1.0.0, <1.1.0",
|
2016-11-25 15:46:00 +00:00
|
|
|
"passlib>=1.6.5, <1.8",
|
2020-04-03 15:46:34 +00:00
|
|
|
"protobuf>=3.6.0, <3.12",
|
2017-12-11 16:04:33 +00:00
|
|
|
"pyasn1>=0.3.1,<0.5",
|
2019-11-12 02:05:35 +00:00
|
|
|
"pyOpenSSL>=19.1.0,<19.2",
|
2019-09-28 10:29:07 +00:00
|
|
|
"pyparsing>=2.4.2,<2.5",
|
2020-04-03 15:46:34 +00:00
|
|
|
"pyperclip>=1.6.0,<1.9",
|
2019-09-28 14:53:24 +00:00
|
|
|
"ruamel.yaml>=0.16,<0.17",
|
|
|
|
"sortedcontainers>=2.1.0,<2.2",
|
2019-10-06 12:41:46 +00:00
|
|
|
"tornado>=4.3,<7",
|
2020-07-29 21:49:49 +00:00
|
|
|
"urwid>=2.1.0,<2.2",
|
2020-04-03 15:46:34 +00:00
|
|
|
"wsproto>=0.14,<0.16",
|
2019-09-28 17:52:18 +00:00
|
|
|
"publicsuffix2>=2.20190812,<3",
|
2020-04-03 15:46:34 +00:00
|
|
|
"zstandard>=0.11,<0.14",
|
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"': [
|
2017-10-22 16:06:44 +00:00
|
|
|
"pydivert>=2.0.3,<2.2",
|
2016-02-04 17:37:58 +00:00
|
|
|
],
|
2020-07-27 16:06:55 +00:00
|
|
|
':python_version == "3.6"': [
|
|
|
|
"dataclasses>=0.7",
|
|
|
|
],
|
2016-02-04 17:37:58 +00:00
|
|
|
'dev': [
|
2018-04-13 23:32:16 +00:00
|
|
|
"asynctest>=0.12.0",
|
2019-09-28 10:29:07 +00:00
|
|
|
"Flask>=1.0,<1.2",
|
2020-04-08 20:11:52 +00:00
|
|
|
"hypothesis>=5.8,<5.9",
|
2018-05-26 21:41:30 +00:00
|
|
|
"parver>=0.1,<2.0",
|
2019-09-28 17:52:18 +00:00
|
|
|
"pytest-asyncio>=0.10.0,<0.11",
|
|
|
|
"pytest-cov>=2.7.1,<3",
|
|
|
|
"pytest-timeout>=1.3.3,<2",
|
|
|
|
"pytest-xdist>=1.29,<2",
|
|
|
|
"pytest>=5.1.3,<6",
|
|
|
|
"requests>=2.9.1,<3",
|
2019-09-28 14:53:24 +00:00
|
|
|
"tox>=3.5,<3.15",
|
2016-02-04 17:37:58 +00:00
|
|
|
]
|
2015-09-07 14:05:16 +00:00
|
|
|
}
|
|
|
|
)
|