-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 786 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 786 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
"""
simpledaemonlog: Set up simple logging for a daemon.
This is basically a preferred configuration for logging with python in some
situations and has been made available for easy reuse with different daemons.
"""
from setuptools import setup, find_packages
import simpledaemonlog
doclines = __doc__.split("\n")
setup(name='simpledaemonlog',
version=simpledaemonlog.version,
description='Set up simple logging for a python daemon.',
long_description='\n'.join(doclines[2:]),
url='http://github.com/proactivity-lab/python-simpledaemonlog',
author='Raido Pahtma',
author_email='raido.pahtma@ttu.ee',
license='MIT',
platforms=["any"],
install_requires=["pyyaml", "colorlog"],
packages=find_packages(),
zip_safe=False)