1 |
douglas |
2 |
#!/usr/bin/env python |
2 |
|
|
# DT WSGI |
3 |
|
|
# |
4 |
|
|
# Douglas Thrift |
5 |
|
|
# |
6 |
|
|
# $Id$ |
7 |
|
|
|
8 |
|
|
from setuptools import setup, find_packages |
9 |
|
|
|
10 |
|
|
setup( |
11 |
|
|
name = 'dtwsgi', |
12 |
|
|
version = '0.9a1', |
13 |
|
|
packages = find_packages(), |
14 |
|
|
scripts = ['scripts/dtwsgi'], |
15 |
|
|
platforms = ['any'], |
16 |
|
|
author = 'Douglas Thrift', |
17 |
|
|
author_email = 'douglas@douglasthrift.net', |
18 |
|
|
description = 'Python WSGI Web Framework thingy', |
19 |
|
|
long_description = 'DT WSGI is a Python WSGI Web Framework thingy.', |
20 |
|
|
license = 'Apache License, Version 2.0', |
21 |
|
|
url = 'http://svn.douglasthrift.net/trac/dtwsgi', |
22 |
|
|
classifiers = [ |
23 |
|
|
'Development Status :: 3 - Alpha', |
24 |
|
|
'Intended Audience :: Developers', |
25 |
|
|
'License :: OSI Approved :: Apache Software License', |
26 |
|
|
'Operating System :: OS Independent', |
27 |
|
|
'Programming Language :: Python', |
28 |
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', |
29 |
|
|
'Topic :: Software Development :: Libraries :: Application Frameworks', |
30 |
|
|
], |
31 |
|
|
) |