This commit is contained in:
Abhinav Singh 2019-08-26 10:53:40 -07:00
parent d0f696212e
commit 3bf0f0754b
2 changed files with 4 additions and 4 deletions

View File

@ -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'

View File

@ -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