#!/usr/bin/env python # DT WSGI # # Douglas Thrift # # $Id$ from setuptools import setup, find_packages setup( name = 'dtwsgi', version = '0.9b1', packages = find_packages(), platforms = ['any'], install_requires = ['lxml>=2.2'], extras_require = { 'bottle': 'bottle>=0.8', 'django': 'Django>=1.2', }, author = 'Douglas Thrift', author_email = 'douglas@douglasthrift.net', description = 'Python web framework helpers and stuff', long_description = 'DT WSGI is a set of Python web framework helpers and stuff.', license = 'Apache License, Version 2.0', url = 'http://code.douglasthrift.net/trac/dtwsgi', classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', 'Topic :: Software Development :: Libraries :: Application Frameworks', ], )