Skip to content

Commit de204f6

Browse files
committed
fixed setup.py
1 parent 92f8f20 commit de204f6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import cms
44

5-
5+
66
CLASSIFIERS = [
77
'Development Status :: 5 - Production/Stable',
88
'Environment :: Web Environment',
@@ -28,7 +28,7 @@
2828
platforms=['OS Independent'],
2929
classifiers=CLASSIFIERS,
3030
install_requires=[
31-
'Django>=1.3.1,<1.5',
31+
'Django>=1.4,<1.6',
3232
'django-classy-tags>=0.3.4.1',
3333
'south>=0.7.2',
3434
'html5lib',
@@ -43,8 +43,8 @@
4343
'Pygments==1.5',
4444
'dj-database-url==0.2.1',
4545
],
46-
packages=find_packages(exclude=["project","project.*"]),
46+
packages=find_packages(exclude=["project", "project.*"]),
4747
include_package_data=True,
48-
zip_safe = False,
49-
test_suite = 'runtests.main',
48+
zip_safe=False,
49+
test_suite='runtests.main',
5050
)

0 commit comments

Comments
 (0)