-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (30 loc) · 847 Bytes
/
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
from setuptools import setup
import pep3143daemon
setup(
name='pep3143daemon',
version='0.1.0',
description='Implementation of PEP 3143, a unix daemon',
long_description=pep3143daemon.__doc__,
packages=['pep3143daemon'],
url='https://github.com/schlitzered/pep3143daemon',
license='MIT',
author='schlitzer',
author_email='[email protected]',
test_suite='test',
platforms='posix',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
keywords=[
'daemon',
'daemonize'
'daemonizing'
'fork',
'pep 3143',
'3143'
]
)