File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ argconfparse
2+ pyyaml
Original file line number Diff line number Diff line change 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 )
You can’t perform that action at this time.
0 commit comments