2013-08-20 09:26:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
proxy.py
|
|
|
|
~~~~~~~~
|
|
|
|
|
2019-09-27 20:42:53 +00:00
|
|
|
Lightweight, Programmable, TLS interceptor Proxy for HTTP(S), HTTP2, WebSockets protocols in a single Python file.
|
2013-08-20 09:26:32 +00:00
|
|
|
|
2019-09-23 04:11:55 +00:00
|
|
|
:copyright: (c) 2013-present by Abhinav Singh.
|
2013-08-20 09:26:32 +00:00
|
|
|
:license: BSD, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
import proxy
|
|
|
|
|
|
|
|
classifiers = [
|
2018-12-10 16:10:12 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: No Input/Output (Daemon)',
|
2013-08-20 09:26:32 +00:00
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: Developers',
|
2018-12-10 16:10:12 +00:00
|
|
|
'Intended Audience :: Education',
|
2013-08-20 09:26:32 +00:00
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: MacOS',
|
2018-12-10 16:10:12 +00:00
|
|
|
'Operating System :: MacOS :: MacOS 9',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
2013-08-20 09:26:32 +00:00
|
|
|
'Operating System :: POSIX',
|
2018-12-10 16:10:12 +00:00
|
|
|
'Operating System :: POSIX :: Linux',
|
2013-08-20 09:26:32 +00:00
|
|
|
'Operating System :: Unix',
|
|
|
|
'Operating System :: Microsoft',
|
|
|
|
'Operating System :: OS Independent',
|
2018-12-10 16:10:12 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2019-09-27 20:42:53 +00:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-12-10 16:10:12 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2013-08-20 09:26:32 +00:00
|
|
|
'Topic :: Internet :: Proxy Servers',
|
2018-12-10 16:10:12 +00:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
2013-08-20 09:26:32 +00:00
|
|
|
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
|
2018-12-10 16:10:12 +00:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: System :: Networking :: Monitoring',
|
|
|
|
'Topic :: Utilities',
|
2013-08-20 09:26:32 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
setup(
|
2018-10-17 08:31:19 +00:00
|
|
|
name='proxy.py',
|
|
|
|
version=proxy.__version__,
|
|
|
|
author=proxy.__author__,
|
|
|
|
author_email=proxy.__author_email__,
|
|
|
|
url=proxy.__homepage__,
|
2018-12-10 16:10:12 +00:00
|
|
|
description=proxy.__description__,
|
|
|
|
long_description=open('README.md').read().strip(),
|
2019-09-27 20:42:53 +00:00
|
|
|
long_description_content_type='text/markdown',
|
2018-12-10 16:10:12 +00:00
|
|
|
download_url=proxy.__download_url__,
|
|
|
|
classifiers=classifiers,
|
2018-10-17 08:31:19 +00:00
|
|
|
license=proxy.__license__,
|
|
|
|
py_modules=['proxy'],
|
|
|
|
scripts=['proxy.py'],
|
|
|
|
install_requires=[],
|
2013-08-20 09:26:32 +00:00
|
|
|
)
|