-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (28 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
#!/usr/bin/python
################################################################################
## contact: [email protected] || https://github.com/aisola/ObjectWeb
## license: LGPLv3
## summary: This document serves as a setup/install file for the ObjectWeb
## Framework.
## maintainer: Abram C. Isola <[email protected]>
## contrib: Abram C. Isola <[email protected]> (all)
################################################################################
from distutils.core import setup
setup(
name='ObjectWeb',
version="2.1 (Beta)",
author='Abram C. Isola',
author_email='[email protected]',
packages=['ObjectWeb'],
url='https://github.com/aisola/ObjectWeb',
description='A pure-Python standalone Web Framework for WSGI and CGI.',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development :: Web Development',
]
)