X-Git-Url: http://git.kaliko.me/?p=python-daemon.git;a=blobdiff_plain;f=setup.py;h=9b7e87e2211e8f6feb39203334a714263c7bf031;hp=d7fa1b7c43ac41036410efe398276fa59c3752e8;hb=ca0b30b5ae63177c6c27a51e066c0cd6641e8c0c;hpb=93b04564dae8bf7fc8c5e47c404698222ee039de diff --git a/setup.py b/setup.py index d7fa1b7..9b7e87e 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,7 +16,7 @@ CLASSIFIERS = [ "License :: OSI Approved :: GNU General Public License (GPL)", "Natural Language :: English", "Operating System :: POSIX", - "Programming Language :: Python", + "Programming Language :: Python :: 2", "Topic :: Software Development :: Libraries :: Python Modules", ] @@ -35,13 +35,13 @@ 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, + version=VERSION, description="Python Daemon library", py_modules=["seth"], long_description=DESCRIPTION, @@ -52,7 +52,7 @@ setup( classifiers=CLASSIFIERS, license=LICENSE, keywords=["daemon", "unix"], - platforms=["POSIX"], + platforms=["POSIX"] )