]> kaliko git repositories - python-daemon.git/blobdiff - setup.py
Add setup.py and moved to seth namespace :)
[python-daemon.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..d7fa1b7
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,59 @@
+#! /usr/bin/env python
+
+from distutils.core import setup
+
+
+from seth import Daemon
+
+
+DESCRIPTION = """\
+Implement a simple Daemon object allowing to daemonize *nix processes.
+"""
+
+CLASSIFIERS = [
+    "Development Status :: 4 - Beta",
+    "Intended Audience :: Developers",
+    "License :: OSI Approved :: GNU General Public License (GPL)",
+    "Natural Language :: English",
+    "Operating System :: POSIX",
+    "Programming Language :: Python",
+    "Topic :: Software Development :: Libraries :: Python Modules",
+]
+
+LICENSE = """\
+Copyright 2007, 2009 Sander Marechal <s.marechal@jejik.com>
+Copyright 2010, 2011, 2012 Jack Kaliko <kaliko@azylum.org>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+                                                                     
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+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/>.
+"""
+
+
+setup(
+    name="python-daemon",
+    version=Daemon.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/",
+    classifiers=CLASSIFIERS,
+    license=LICENSE,
+    keywords=["daemon", "unix"],
+    platforms=["POSIX"],
+)
+
+
+# vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: