]> kaliko git repositories - python-daemon.git/blob - setup.py
9977e7681d3368d8f4585130f863c609923734cf
[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     "Topic :: Software Development :: Libraries :: Python Modules",
20     "Programming Language :: Python :: 2",
21     "Programming Language :: Python :: 3",] + [
22    ("Programming Language :: Python :: %s" % x) for x in "2.7 3.2 3.3".split()],
23
24 LICENSE = """\
25 Copyright 2007, 2009 Sander Marechal <s.marechal@jejik.com>
26 Copyright 2010, 2011, 2012 Jack Kaliko <kaliko@azylum.org>
27
28 This program is free software: you can redistribute it and/or modify
29 it under the terms of the GNU General Public License as published by
30 the Free Software Foundation, either version 3 of the License, or
31 (at your option) any later version.
32                                                                      
33 This program is distributed in the hope that it will be useful,
34 but WITHOUT ANY WARRANTY; without even the implied warranty of
35 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
36 GNU General Public License for more details.
37                                                                      
38 You should have received a copy of the GNU General Public License
39 along with this program.  If not, see <http://www.gnu.org/licenses/>.\
40 """
41
42
43 setup(
44     name="python-seth",
45     version=VERSION,
46     description="Python Daemon library",
47     py_modules=["seth"],
48     long_description=DESCRIPTION,
49     author="Jack Kaliko",
50     author_email="kaliko@azylum.org",
51     url="http://git.kaliko.me/?p=python-seth.git;a=summary",
52     download_url="http://pypi.python.org/pypi/python-seth/",
53     classifiers=CLASSIFIERS,
54     license=LICENSE,
55     keywords=["daemon", "unix"],
56     platforms=["POSIX"]
57 )
58
59
60 # vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=79: