forked from martinrusev/python-daemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 767 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
from setuptools import setup, find_packages
import os
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
version = '0.1.0'
setup(
name='python_daemon',
version=version,
description="A simple python daemon that daemonizes python applications",
long_description=read('README.rst'),
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='python, daemon,',
author='Martin Rusev',
author_email='[email protected]',
url='https://github.com/martinrusev/python-daemon',
license='BSD',
packages=find_packages(),
zip_safe=False,
install_requires=[],
include_package_data=True,
)