Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit 3703817

Browse files
committed
claim Python 3 support in setup.py
1 parent 7ebc913 commit 3703817

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
packages=find_packages(),
1616
include_package_data=True,
1717
zip_safe=False,
18-
install_requires = [
19-
"django >= 1.4",
18+
install_requires=[
19+
"django >= 1.4, < 1.7",
2020
"boto >= 2.5",
2121
"South >= 0.8",
2222
],
@@ -25,6 +25,9 @@
2525
"Operating System :: OS Independent",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 2",
28+
'Programming Language :: Python :: 2.7',
29+
'Programming Language :: Python :: 3',
30+
'Programming Language :: Python :: 3.4',
2831
"Topic :: Software Development :: Libraries :: Python Modules",
2932
"Environment :: Web Environment",
3033
"Framework :: Django",

0 commit comments

Comments
 (0)