-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (26 loc) · 1017 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
#!/usr/bin/python2
from distutils.core import setup
from dragon_on_wheels import __version__ as package_version
package_name = 'dragon_on_wheels'
michurin = 'Alexey V Michurin'
michurin_email = 'a.michurin@gmail.com'
setup(name = package_name,
version = package_version,
packages = [package_name],
description = 'Simple SCGI WSGI server',
long_description = 'Pure Python implementation of simple threaded SCGI WSGI server',
url = 'https://github.com/michurin/dragon-on-wheels',
author = michurin,
author_email = michurin_email,
maintainer = michurin,
maintainer_email = michurin_email,
license = 'Simplified BSD License',
platforms = 'any',
classifiers = [
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Operating System :: Unix',
'Programming Language :: Python :: 2'
'License :: OSI Approved :: BSD License']
)