X-Git-Url: https://git.kaliko.me/?p=python-daemon.git;a=blobdiff_plain;f=setup.py;h=277cac6a8dda25d615a44ab0ba6cc5ea626bdb12;hp=d7fa1b7c43ac41036410efe398276fa59c3752e8;hb=bf6dcb0565a9b74f4bd675d0637950941eb10639;hpb=93b04564dae8bf7fc8c5e47c404698222ee039de diff --git a/setup.py b/setup.py index d7fa1b7..277cac6 100755 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ from distutils.core import setup from seth import Daemon -DESCRIPTION = """\ -Implement a simple Daemon object allowing to daemonize *nix processes. -""" +DESCRIPTION = open('README').read() + +VERSION=Daemon.version CLASSIFIERS = [ "Development Status :: 4 - Beta", @@ -16,9 +16,10 @@ CLASSIFIERS = [ "License :: OSI Approved :: GNU General Public License (GPL)", "Natural Language :: English", "Operating System :: POSIX", - "Programming Language :: Python", "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 @@ -35,24 +36,24 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with this program. If not, see . +along with this program. If not, see .\ """ setup( - name="python-daemon", - version=Daemon.version, + 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"], - platforms=["POSIX"], + platforms=["POSIX"] )