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'},