Skip to content

Commit

Permalink
Some tweaks to allow install the package from the pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
camilonova committed Mar 24, 2012
1 parent aac9f40 commit 5533584
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup, find_packages


setup(
Expand All @@ -8,9 +8,19 @@
author='Orne Brocaar',
author_email='[email protected]',
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',
],
)

0 comments on commit 5533584

Please sign in to comment.