from seth import Daemon
-DESCRIPTION = """\
-Implement a simple Daemon object allowing to daemonize *nix processes.
-"""
+DESCRIPTION = open('doc/README').read()
+
+VERSION=Daemon.version
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"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",
]
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,
+ version=VERSION,
description="Python Daemon library",
py_modules=["seth"],
long_description=DESCRIPTION,
classifiers=CLASSIFIERS,
license=LICENSE,
keywords=["daemon", "unix"],
- platforms=["POSIX"],
+ platforms=["POSIX"]
)