-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (29 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import re
import setuptools
PACKAGE_NAME = 'cgiproxy'
FILE_NAME = PACKAGE_NAME + '/__init__.py'
VERSION = re.search(
"__version__ = ['\"]([^'\"]+)['\"]", open(FILE_NAME, 'r').read()).group(1)
with open('README.md', 'r') as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name=PACKAGE_NAME,
version=VERSION,
description='The simple HTTP proxy.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/Datamart/CGI-Proxy',
author='Valentin Podkamennyi, Alex Krailo',
# author_email='Valentin Podkamennyi <[email protected]>, Alex Krailo <[email protected]>',
license='Apache 2.0',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)