Changed setup.py to use setuptools because it has a with zip_safe attribute which prevents creating zipped installations.

committer: Jannis Leidel <jannis@leidel.info>

--HG--
extra : convert_revision : 5e5b1e2202d8e4b2354e52273e468a829f173508
This commit is contained in:
Jannis Leidel 2009-03-01 01:04:19 +01:00
parent 25cb0a3bfb
commit 078985d629
2 changed files with 10 additions and 9 deletions

View file

@ -1,2 +1,2 @@
VERSION = (0, 5, 4)
VERSION = (0, 5, 5)
__version__ = '.'.join(map(str, VERSION))

View file

@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup, find_packages
setup(
name='django-dbtemplates',
@ -8,13 +8,14 @@ setup(
author='Jannis Leidel',
author_email='jannis@leidel.info',
url='http://github.com/jezdez/django-dbtemplates/wikis/',
download_url='http://github.com/jezdez/django-dbtemplates/zipball/0.5.4',
packages=[
'dbtemplates',
'dbtemplates.management',
'dbtemplates.management.commands'
],
package_dir={'dbtemplates': 'dbtemplates'},
download_url='http://cloud.github.com/downloads/jezdez/django-dbtemplates/django-dbtemplates-0.5.5.tar.gz',
packages=find_packages(),
zip_safe=False,
package_data = {
'dbtemplates': [
'locale/*/LC_MESSAGES/*',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',