Fixed a bunch of forgotten things, d'oh!

This commit is contained in:
Jannis Leidel
2011-09-07 14:12:08 +02:00
parent 9548456581
commit 3704c467e1
2 changed files with 5 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
Changelog Changelog
========= =========
HEAD 1.0
---- ---
- **BACKWARDS-INCOMPATIBLE** Stopped swallowing exceptions raised by - **BACKWARDS-INCOMPATIBLE** Stopped swallowing exceptions raised by
rendering the template tag in production (``DEBUG = False``). This rendering the template tag in production (``DEBUG = False``). This

View File

@@ -110,7 +110,7 @@ setup(
packages = find_packages(exclude=['tests', 'tests.*']), packages = find_packages(exclude=['tests', 'tests.*']),
package_data = find_package_data('compressor', only_in_packages=False), package_data = find_package_data('compressor', only_in_packages=False),
classifiers = [ classifiers = [
'Development Status :: 4 - Beta', 'Development Status :: 5 - Production/Stable',
'Framework :: Django', 'Framework :: Django',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
@@ -122,10 +122,10 @@ setup(
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
], ],
zip_safe = False, zip_safe = False,
install_requires=[ install_requires = [
'django-appconf >= 0.4', 'django-appconf >= 0.4',
], ],
setup_requires=[ setup_requires = [
'versiontools >= 1.6', 'versiontools >= 1.6',
], ],
) )