forked from dimier/python-daemon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 946 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 946 Bytes
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
# -*- coding: utf-8 -*-
__version__ = '0.0.1'
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="python-daemon",
version=__version__,
author="Server Density",
license="http://creativecommons.org/licenses/by-sa/3.0/",
url="https://github.com/serverdensity/python-daemon",
description="Python daemonizer for Unix, Linux and OS X",
platforms=["any"],
classifiers=[
"License :: OSI Approved :: Attribution Assurance License",
'Intended Audience :: Developers',
'Environment :: No Input/Output (Daemon)',
'Development Status :: 4 - Beta',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
],
)