From: Camilo Nova Date: Sat, 24 Mar 2012 15:49:26 +0000 (-0500) Subject: Some tweaks to allow install the package from the pypi X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=55335842031dffb1e0b57f40c79497673bca84ca;p=django-google-tools.git Some tweaks to allow install the package from the pypi --- diff --git a/setup.py b/setup.py index c13e231..ecb157e 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup, find_packages setup( @@ -8,9 +8,19 @@ setup( author='Orne Brocaar', author_email='info@brocaar.com', url='http://github.com/LUKKIEN/django-google-tools', - packages=[ - 'googletools', - 'googletools.migrations', - 'googletools.templatetags', - ] + license='MIT', + packages=find_packages(), + include_package_data=True, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Topic :: Internet :: WWW/HTTP', + ], )