#!/usr/bin/env python
# DT WSGI
#
# Douglas Thrift
#
# $Id$

from setuptools import setup, find_packages

setup(
	name = 'dtwsgi',
	version = '0.9a1',
	packages = find_packages(),
	scripts = ['scripts/dtwsgi'],
	platforms = ['any'],
	author = 'Douglas Thrift',
	author_email = 'douglas@douglasthrift.net',
	description = 'Python WSGI Web Framework thingy',
	long_description = 'DT WSGI is a Python WSGI Web Framework thingy.',
	license = 'Apache License, Version 2.0',
	url = 'http://svn.douglasthrift.net/trac/dtwsgi',
	classifiers = [
		'Development Status :: 3 - Alpha',
		'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',
	],
)
