X-Git-Url: http://git.kaliko.me/?p=python-daemon.git;a=blobdiff_plain;f=setup.py;h=277cac6a8dda25d615a44ab0ba6cc5ea626bdb12;hp=9b7e87e2211e8f6feb39203334a714263c7bf031;hb=602c2093a70562f6995c7e3bcf8b2a5bc9f6e59b;hpb=ca0b30b5ae63177c6c27a51e066c0cd6641e8c0c diff --git a/setup.py b/setup.py index 9b7e87e..277cac6 100755 --- 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 @@ -40,15 +41,15 @@ along with this program. If not, see .\ 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"],