]> kaliko git repositories - python-daemon.git/blob - setup.py
Update git url
[python-daemon.git] / setup.py
1 #! /usr/bin/env python
2
3 from distutils.core import setup
4
5
6 from seth import Daemon
7
8
9 DESCRIPTION = open('README').read()
10
11 VERSION=Daemon.version
12
13 CLASSIFIERS = [
14     "Development Status :: 4 - Beta",
15     "Intended Audience :: Developers",
16     "License :: OSI Approved :: GNU General Public License (GPL)",
17     "Natural Language :: English",
18     "Operating System :: POSIX",
19     "Programming Language :: Python :: 2",
20     "Topic :: Software Development :: Libraries :: Python Modules",
21 ]
22
23 LICENSE = """\
24 Copyright 2007, 2009 Sander Marechal <s.marechal@jejik.com>
25 Copyright 2010, 2011, 2012 Jack Kaliko <kaliko@azylum.org>
26
27 This program is free software: you can redistribute it and/or modify
28 it under the terms of the GNU General Public License as published by
29 the Free Software Foundation, either version 3 of the License, or
30 (at your option) any later version.
31                                                                      
32 This program is distributed in the hope that it will be useful,
33 but WITHOUT ANY WARRANTY; without even the implied warranty of
34 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
35 GNU General Public License for more details.
36                                                                      
37 You should have received a copy of the GNU General Public License
38 along with this program.  If not, see <http://www.gnu.org/licenses/>.\
39 """
40
41
42 setup(
43     name="python-seth",
44     version=VERSION,
45     description="Python Daemon library",
46     py_modules=["seth"],
47     long_description=DESCRIPTION,
48     author="Jack Kaliko",
49     author_email="kaliko@azylum.org",
50     url="http://git.kaliko.me/?p=python-seth.git;a=summary",
51     download_url="http://pypi.python.org/pypi/python-seth/",
52     classifiers=CLASSIFIERS,
53     license=LICENSE,
54     keywords=["daemon", "unix"],
55     platforms=["POSIX"]
56 )
57
58
59 # vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: