forked from dgrinton/django-initd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (31 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""initd: module for simplifying creation of initd daemons.
This module provides functionality for starting, stopping and
restarting daemons. It also provides a simple utility for reading the
command line arguments and determining which action to perform from
them.
"""
from setuptools import setup
doclines = __doc__.splitlines()
setup(
name = 'django-initd',
version = '0.0.4',
py_modules = ['initd', 'daemon_command', 'daemonize'],
platforms = ['POSIX'],
install_requires = ['django>=1.0'],
author = 'Daniel Roseman',
author_email = '[email protected]',
description = doclines[0],
long_description = '\n'.join(doclines[2:]),
license = 'http://www.gnu.org/licenses/gpl.html',
url = 'http://github.com/danielroseman/django-initd',
test_suite = 'test.test_initd.suite',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Boot :: Init',
],
)