-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 889 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 889 Bytes
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='zeevro@gmail.com',
maintainer='Zeev Rotshtein',
maintainer_email='zeevro@gmail.com',
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',
],
)