From f56ca0afab0f8b0f39d86012c5deca022c0a1488 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 10 Jul 2011 23:10:48 -0500 Subject: [PATCH] setup: Update URL and classifiers --- setup.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2cbaf1e..fd3ff01 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,17 @@ setup( description='Lightweight WSGI framework for web applications', author='Dustin C. Hatch', author_email='admiralnemo@gmail.com', - url='', #TODO: Bitbucket URL here + url='http://bitbucket.org/AdmiralNemo/milla', + license='APACHE-2', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', + ], install_requires=install_requires, packages=find_packages('src', exclude=['distribute_setup']), package_dir={'': 'src'},