mitmproxy/setup.py

109 lines
3.7 KiB
Python
Raw Normal View History

2014-10-01 18:41:58 +00:00
import os
2016-12-11 16:50:46 +00:00
import runpy
from codecs import open
2010-02-16 04:09:07 +00:00
2016-12-11 16:50:46 +00:00
from setuptools import setup, find_packages
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-10-01 18:41:58 +00:00
here = os.path.abspath(os.path.dirname(__file__))
2015-09-16 01:59:06 +00:00
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
2016-12-11 16:50:46 +00:00
VERSION = runpy.run_path(os.path.join(here, "mitmproxy", "version.py"))["VERSION"]
2010-02-16 04:09:07 +00:00
setup(
name="mitmproxy",
2016-12-11 16:50:46 +00:00
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",
author="Aldo Cortesi",
author_email="aldo@corte.si",
2014-10-01 18:41:58 +00:00
license="MIT",
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",
"Programming Language :: Python",
2016-07-09 08:29:12 +00:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
2016-07-09 08:29:12 +00:00
"Programming Language :: Python :: 3.5",
2016-12-23 19:30:04 +00:00
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"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.*",
]),
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': [
"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",
"brotlipy>=0.5.1, <0.8",
2016-02-18 12:03:40 +00:00
"certifi>=2015.11.20.1", # no semver here - this should always be on the last release!
"click>=6.2, <7",
"cryptography>=2.0,<2.2",
2017-03-24 18:24:28 +00:00
"h2>=3.0, <4",
"hyperframe>=5.0, <6",
2017-04-16 13:05:58 +00:00
"kaitaistruct>=0.7, <0.8",
2017-07-28 00:35:38 +00:00
"ldap3>=2.2.0, <2.4",
2016-11-25 15:46:00 +00:00
"passlib>=1.6.5, <1.8",
2017-08-02 17:53:32 +00:00
"pyasn1>=0.3.1, <0.4",
2017-10-17 09:41:09 +00:00
"pyOpenSSL>=17.2,<17.4",
2017-03-15 09:14:16 +00:00
"pyparsing>=2.1.3, <2.3",
"pyperclip>=1.5.22, <1.7",
2016-11-16 21:06:06 +00:00
"requests>=2.9.1, <3",
"ruamel.yaml>=0.13.2, <0.16",
"sortedcontainers>=1.5.4, <1.6",
"tornado>=4.3, <4.6",
2016-02-05 21:59:24 +00:00
"urwid>=1.3.1, <1.4",
2016-02-04 17:37:58 +00:00
],
extras_require={
2016-02-04 17:37:58 +00:00
':sys_platform == "win32"': [
"pydivert>=2.0.3,<2.2",
2016-02-04 17:37:58 +00:00
],
'dev': [
2017-10-31 09:57:43 +00:00
"flake8>=3.5, <3.6",
"Flask>=0.10.1, <0.13",
"mypy>=0.530,<0.541",
"pytest-cov>=2.2.1, <3",
"pytest-faulthandler>=1.3.0, <2",
"pytest-timeout>=1.0.0, <2",
"pytest-xdist>=1.14, <2",
"pytest>=3.1, <4",
"rstcheck>=2.2, <4.0",
"sphinx_rtd_theme>=0.1.9, <0.3",
"sphinx-autobuild>=0.5.2, <0.8",
"sphinx>=1.3.5, <1.7",
2017-03-15 22:04:59 +00:00
"sphinxcontrib-documentedlist>=0.5.0, <0.7",
"tox>=2.3, <3",
2015-09-07 14:05:16 +00:00
],
2016-02-04 17:37:58 +00:00
'examples': [
2017-05-11 08:16:19 +00:00
"beautifulsoup4>=4.4.1, <4.7",
2017-10-02 15:48:05 +00:00
"Pillow>=4.3,<4.4",
2016-02-04 17:37:58 +00:00
]
2015-09-07 14:05:16 +00:00
}
)