forked from sysr-q/mattdaemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 842 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
from setuptools import setup
def long_desc():
with open('README.rst', 'rb') as f:
return f.read()
kw = {
"name": "mattdaemon",
"version": "1.1.1",
"description": "Easily daemonize your python projects",
"long_description": long_desc(),
"url": "https://github.com/plausibility/mattdaemon",
"author": "plausibility",
"author_email": "[email protected]",
"license": "MIT",
"packages": ['mattdaemon'],
"zip_safe": False,
"keywords": "daemon daemonize daemonise cli matt",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2"
]
}
if __name__ == "__main__":
setup(**kw)