Skip to content

Commit

Permalink
Merge pull request #1 from camilonova/patch-1
Browse files Browse the repository at this point in the history
Some tweaks to allow install the package from the pypi
  • Loading branch information
Janneke Janssen committed Mar 29, 2012
2 parents aac9f40 + 5533584 commit 4011123
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 4011123

Please sign in to comment.