From 7b61302dc229334e5c7642b6f6b1d2e580e14242 Mon Sep 17 00:00:00 2001 From: medmunds Date: Tue, 5 Mar 2013 15:46:06 -0800 Subject: [PATCH] Setup: list supported Python and Django versions; don't include entire license file --- setup.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index cf7fd98..90e34e6 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,6 @@ def long_description_from_readme(rst): rst = re.sub(r'/latest', '/v' + __minor_version__, rst) # ReadTheDocs return rst -with open('LICENSE') as f: - license_text = f.read() with open('README.rst') as f: long_description = long_description_from_readme(f.read()) @@ -28,7 +26,7 @@ setup( author="Kenneth Love , Chris Jones ", author_email="kenneth@brack3t.com", url="https://github.com/brack3t/Djrill/", - license=license_text, + license="BSD License", packages=["djrill"], zip_safe=False, install_requires=["requests", "django"], @@ -37,9 +35,16 @@ setup( tests_require=["mock"], classifiers=[ "Programming Language :: Python", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.2", "License :: OSI Approved :: BSD License", "Topic :: Software Development :: Libraries :: Python Modules", "Framework :: Django", + "Framework :: Django :: 1.3", + "Framework :: Django :: 1.4", + "Framework :: Django :: 1.5", "Environment :: Web Environment", ], long_description=long_description,