mitmproxy/netlib/setup.py

71 lines
2.5 KiB
Python
Raw Normal View History

2014-10-01 21:22:53 +00:00
from setuptools import setup, find_packages
from codecs import open
import os
import sys
2015-05-28 08:56:00 +00:00
2012-06-23 01:49:57 +00:00
from netlib import version
2014-10-01 21:22:53 +00:00
# Based on https://github.com/pypa/sampleproject/blob/master/setup.py
# and https://python-packaging-user-guide.readthedocs.org/
2015-05-28 08:56:00 +00:00
# and https://caremad.io/2014/11/distributing-a-cffi-project/
2014-09-08 16:58:07 +00:00
2014-10-01 21:22:53 +00:00
here = os.path.abspath(os.path.dirname(__file__))
2012-06-23 01:49:57 +00:00
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
2014-09-08 16:58:07 +00:00
long_description = f.read()
2012-06-23 01:49:57 +00:00
setup(
2014-09-08 16:58:07 +00:00
name="netlib",
version=version.VERSION,
description="A collection of network utilities used by pathod and mitmproxy.",
long_description=long_description,
2014-10-01 21:22:53 +00:00
url="http://github.com/mitmproxy/netlib",
2014-09-08 16:58:07 +00:00
author="Aldo Cortesi",
author_email="aldo@corte.si",
2014-10-01 21:22:53 +00:00
license="MIT",
2014-09-08 16:58:07 +00:00
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
2015-11-29 18:06:54 +00:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
2015-02-07 00:43:25 +00:00
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
2014-09-08 16:58:07 +00:00
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Traffic Generation",
],
2016-02-16 03:28:10 +00:00
packages=find_packages(),
2016-02-05 22:39:48 +00:00
install_requires=[
"pyasn1>=0.1.9, <0.2",
"pyOpenSSL>=0.15.1, <0.16",
"cryptography>=1.2.2, <1.3",
"passlib>=1.6.5, <1.7",
"hpack>=2.1.0, <3.0",
"hyperframe>=3.2.0, <4.0",
"six>=1.10.0, <1.11",
"certifi>=2015.11.20.1", # no semver here - this should always be on the last release!
"backports.ssl_match_hostname>=3.5.0.1, <3.6",
],
2014-09-08 16:58:07 +00:00
extras_require={
2016-02-05 22:39:48 +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"': [
"ipaddress>=1.0.15, <1.1",
],
2014-09-08 16:58:07 +00:00
'dev': [
2016-02-05 22:39:48 +00:00
"mock>=1.3.0, <1.4",
"pytest>=2.8.7, <2.9",
"pytest-xdist>=1.14, <1.15",
"pytest-cov>=2.2.1, <2.3",
"pytest-timeout>=1.0.0, <1.1",
"coveralls>=1.1, <1.2"
2015-06-26 11:26:35 +00:00
]
2015-05-28 08:56:00 +00:00
},
)