v1.0
This commit is contained in:
parent
d0f696212e
commit
3bf0f0754b
4
proxy.py
4
proxy.py
|
@ -29,8 +29,8 @@ from urllib import parse as urlparse
|
|||
if os.name != 'nt':
|
||||
import resource
|
||||
|
||||
VERSION = (0, 4)
|
||||
__version__ = '.'.join(map(str, VERSION[0:2]))
|
||||
VERSION = (1, 0, 'alpha')
|
||||
__version__ = '.'.join(map(str, VERSION[0:3]))
|
||||
__description__ = 'Lightweight Programmable HTTP, HTTPS, WebSockets Proxy Server in a single Python file'
|
||||
__author__ = 'Abhinav Singh'
|
||||
__author_email__ = 'mailsforabhinav@gmail.com'
|
||||
|
|
4
setup.py
4
setup.py
|
@ -3,9 +3,9 @@
|
|||
proxy.py
|
||||
~~~~~~~~
|
||||
|
||||
HTTP Proxy Server in Python.
|
||||
Lightweight Programmable HTTP, HTTPS, WebSockets Proxy Server in a single Python file.
|
||||
|
||||
:copyright: (c) 2013-2018 by Abhinav Singh.
|
||||
:copyright: (c) 2013-2020 by Abhinav Singh.
|
||||
:license: BSD, see LICENSE for more details.
|
||||
"""
|
||||
from setuptools import setup
|
||||
|
|
Loading…
Reference in New Issue