]> kaliko git repositories - python-daemon.git/blobdiff - setup.py
Update git url
[python-daemon.git] / setup.py
index d7fa1b7c43ac41036410efe398276fa59c3752e8..da436c06d7804a0f8294a02c9804f6606000a515 100755 (executable)
--- 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,24 +35,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 <http://www.gnu.org/licenses/>.
+along with this program.  If not, see <http://www.gnu.org/licenses/>.\
 """
 
 
 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"]
 )