]> kaliko git repositories - python-daemon.git/commitdiff
Update setup.py with 0.6
authorkaliko <kaliko@azylum.org>
Sat, 1 Dec 2012 12:16:41 +0000 (13:16 +0100)
committerkaliko <kaliko@azylum.org>
Sat, 1 Dec 2012 12:16:41 +0000 (13:16 +0100)
seth.py
setup.py

diff --git a/seth.py b/seth.py
index 77f7a4b9810c0010dd0931f2d58c23a60fa65d3c..2ca65c8ecc603b4357648aec6d8a73fd18e0cb3a 100644 (file)
--- a/seth.py
+++ b/seth.py
@@ -27,7 +27,7 @@ class Daemon(object):
             stdout  : standard output file descriptor (default to /dev/null)
             stderr  : standard error file descriptorr (default to /dev/null)
     """
-    version = '0.5'
+    version = '0.6'
 
     def __init__(self, pidfile,
             stdin = os.devnull,
@@ -153,7 +153,7 @@ class Daemon(object):
         """
         Stop the daemon
         """
-        # Get the pid from the pidopen
+        # Get the pid from the pidfile
         try:
             pf = open(self.pidfile, 'r')
             pid = int(pf.read().strip())
index da436c06d7804a0f8294a02c9804f6606000a515..9977e7681d3368d8f4585130f863c609923734cf 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>