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 |
douglas |
6 |
version = '0.9b1', |
13 |
douglas |
2 |
packages = find_packages(), |
14 |
|
|
platforms = ['any'], |
15 |
douglas |
6 |
install_requires = ['lxml>=2.2'], |
16 |
|
|
extras_require = { |
17 |
|
|
'bottle': 'bottle>=0.8', |
18 |
|
|
'django': 'Django>=1.2', |
19 |
|
|
}, |
20 |
douglas |
2 |
author = 'Douglas Thrift', |
21 |
|
|
author_email = 'douglas@douglasthrift.net', |
22 |
douglas |
6 |
description = 'Python web framework helpers and stuff', |
23 |
|
|
long_description = 'DT WSGI is a set of Python web framework helpers and stuff.', |
24 |
douglas |
2 |
license = 'Apache License, Version 2.0', |
25 |
douglas |
6 |
url = 'http://code.douglasthrift.net/trac/dtwsgi', |
26 |
douglas |
2 |
classifiers = [ |
27 |
douglas |
6 |
'Development Status :: 4 - Beta', |
28 |
douglas |
2 |
'Intended Audience :: Developers', |
29 |
|
|
'License :: OSI Approved :: Apache Software License', |
30 |
|
|
'Operating System :: OS Independent', |
31 |
|
|
'Programming Language :: Python', |
32 |
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', |
33 |
|
|
'Topic :: Software Development :: Libraries :: Application Frameworks', |
34 |
|
|
], |
35 |
|
|
) |