-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 889 Bytes
/
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
from setuptools import setup
setup(
name='cgi_utils',
version='0.1.0',
url='https://github.com/zeevro/cgi_utils',
download_url='https://github.com/zeevro/cgi_utils/archive/master.zip',
author='Zeev Rotshtein',
author_email='[email protected]',
maintainer='Zeev Rotshtein',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: Public Domain',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
],
license=None,
description='A minimal CGI library',
keywords=[
'Web',
'CGI',
],
zip_safe=True,
py_modules=[
'cgi_utils',
],
)