]> kaliko git repositories - python-daemon.git/blobdiff - setup.py
Fixed a leading comma in setup.py
[python-daemon.git] / setup.py
index 9b7e87e2211e8f6feb39203334a714263c7bf031..277cac6a8dda25d615a44ab0ba6cc5ea626bdb12 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -16,9 +16,10 @@ CLASSIFIERS = [
     "License :: OSI Approved :: GNU General Public License (GPL)",
     "Natural Language :: English",
     "Operating System :: POSIX",
-    "Programming Language :: Python :: 2",
     "Topic :: Software Development :: Libraries :: Python Modules",
-]
+    "Programming Language :: Python :: 2",
+    "Programming Language :: Python :: 3",] + [
+   ("Programming Language :: Python :: %s" % x) for x in "2.7 3.2 3.3".split()]
 
 LICENSE = """\
 Copyright 2007, 2009 Sander Marechal <s.marechal@jejik.com>
@@ -40,15 +41,15 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.\
 
 
 setup(
-    name="python-daemon",
+    name="python-seth",
     version=VERSION,
     description="Python Daemon library",
     py_modules=["seth"],
     long_description=DESCRIPTION,
     author="Jack Kaliko",
     author_email="kaliko@azylum.org",
-    url="http://git.kaliko.me/?p=python-daemon.git;a=summary",
-    download_url="http://pypi.python.org/pypi/python-daemon/",
+    url="http://git.kaliko.me/?p=python-seth.git;a=summary",
+    download_url="http://pypi.python.org/pypi/python-seth/",
     classifiers=CLASSIFIERS,
     license=LICENSE,
     keywords=["daemon", "unix"],