We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b99a08a + 8d75541 commit 1ca4443Copy full SHA for 1ca4443
MANIFEST.in
@@ -1,3 +1,6 @@
1
include LICENSE.mit
2
include README.md
3
+include CHANGELOG.md
4
+include AUTHORS
5
+include CONTRIBUTORS
6
recursive-exclude * *.pyc
setup.cfg
@@ -0,0 +1,2 @@
+[bdist_wheel]
+universal = 1
setup.py
@@ -17,17 +17,22 @@ def read(fname):
17
"Development Status :: 5 - Production/Stable",
18
"Environment :: Web Environment",
19
"Framework :: Django",
20
+ "Framework :: Django :: 1.5",
21
+ "Framework :: Django :: 1.6",
22
+ "Framework :: Django :: 1.7",
23
"Intended Audience :: Developers",
24
"Natural Language :: English",
25
"Operating System :: OS Independent",
26
"Programming Language :: Python",
27
+ "Programming Language :: Python :: 3",
28
+ "Programming Language :: Python :: 2",
29
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
30
"Topic :: Utilities",
31
"License :: OSI Approved :: MIT License",
32
],
33
keywords='django cas',
34
author='Derek Stegelman, Garrett Pennington',
- author_email='derekst@k-state.edu, garrett@k-state.edu',
35
+ author_email='derekst@k-state.edu, garrettp@gmail.com',
36
url='http://github.com/kstateome/django-cas/',
37
license='MIT',
38
packages=find_packages(),
0 commit comments