summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2016-04-05 06:14:49 -0700
committerJustin Mayer <entroP@gmail.com>2016-04-05 06:14:49 -0700
commite0ee610f7acfbc878c4281cf15ad4a5ff0802106 (patch)
tree52078b18df04272d8c59fce031414d9574fe1adb
parent5bfbc363f0e255b4d7d38c78dbae40b0e46787fa (diff)
downloadfeedgenerator-e0ee610f7acfbc878c4281cf15ad4a5ff0802106.tar.gz
Add classifiers for Python 3.4 and 3.5 to setup.py
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c70f74f..0e4a059 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ from setuptools import setup
NAME = 'feedgenerator'
PACKAGES = ['feedgenerator', 'feedgenerator.django',
'feedgenerator.django.utils']
-DESCRIPTION = 'Standalone version of django.utils.feedgenerator, compatible with Py3k'
+DESCRIPTION = 'Standalone version of django.utils.feedgenerator'
LONG_DESCRIPTION = open('README.rst').read()
URL = "https://github.com/getpelican/feedgenerator"
@@ -21,6 +21,8 @@ CLASSIFIERS = ['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',