2014-10-01 21:22:53 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from codecs import open
|
|
|
|
import os
|
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/
|
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
|
|
|
|
2014-10-01 21:22:53 +00:00
|
|
|
with open(os.path.join(here, 'README.mkd'), 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",
|
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
|
|
"Topic :: Software Development :: Testing",
|
|
|
|
"Topic :: Software Development :: Testing :: Traffic Generation",
|
|
|
|
],
|
2014-10-01 21:22:53 +00:00
|
|
|
|
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
|
2014-09-08 16:58:07 +00:00
|
|
|
install_requires=[
|
|
|
|
"pyasn1>=0.1.7",
|
|
|
|
"pyOpenSSL>=0.14",
|
|
|
|
"passlib>=1.6.2"
|
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'dev': [
|
|
|
|
"mock>=1.0.1",
|
|
|
|
"nose>=1.3.0",
|
|
|
|
"nose-cov>=1.6",
|
|
|
|
"coveralls>=0.4.1",
|
2014-11-11 11:26:20 +00:00
|
|
|
"pathod>=%s, <%s" % (version.MINORVERSION, version.NEXT_MINORVERSION)
|
2014-09-08 16:58:07 +00:00
|
|
|
]
|
|
|
|
}
|
2014-10-01 21:22:53 +00:00
|
|
|
)
|