Skip to content

Commit e844a16

Browse files
committed
setup.py and requirements.txt
1 parent 692754d commit e844a16

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
argconfparse
2+
pyyaml

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
"""
2+
simpledaemonlog: Set up simple logging for a daemon.
3+
This is basically a preferred configuration for logging with python in some
4+
situations and has been made available for easy reuse with different daemons.
5+
"""
6+
7+
from setuptools import setup
8+
9+
doclines = __doc__.split("\n")
10+
11+
setup(name='simpledaemonlog',
12+
version='0.1.0',
13+
description='Set up simple logging for a python daemon.',
14+
long_description='\n'.join(doclines[2:]),
15+
url='http://github.com/proactivity-lab/python-simpledaemonlog',
16+
author='Raido Pahtma',
17+
author_email='raido.pahtma@ttu.ee',
18+
license='MIT',
19+
platforms = ["any"],
20+
install_requires=["pyyaml", "argconfparse"],
21+
packages=['simpledaemonlog'],
22+
zip_safe=False)

0 commit comments

Comments
 (0)