proxy.py/setup.py

57 lines
1.8 KiB
Python
Raw Normal View History

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
: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 = [
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
2013-08-20 09:26:32 +00:00
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
2013-08-20 09:26:32 +00:00
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS 9',
'Operating System :: MacOS :: MacOS X',
2013-08-20 09:26:32 +00:00
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
2013-08-20 09:26:32 +00:00
'Operating System :: Unix',
'Operating System :: Microsoft',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
2019-09-27 20:42:53 +00:00
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
2013-08-20 09:26:32 +00:00
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP',
2013-08-20 09:26:32 +00:00
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'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__,
description=proxy.__description__,
long_description=open('README.md').read().strip(),
2019-09-27 20:42:53 +00:00
long_description_content_type='text/markdown',
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
)