-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup_reggol.py
42 lines (31 loc) · 1 KB
/
setup_reggol.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
31
32
33
34
35
36
37
38
39
40
41
42
import setuptools
setuptools.setup(
name="reggol",
version="0.2.0",
url="https://github.com/roboy/ravestate",
author="Roboy",
author_email="[email protected]",
description="Reggol is a convenience layer over python's logging module.",
long_description="""
### Reggol is your weird best friend when it comes to logging.
## Usage
It takes away some arguments frome your command line args; namely
`--loglevel` and `--logpath`.
You may use `reggol.help_string()` to append reggols
argument help to your own command line.
Use `reggol.get_logger()` in any of your code files for some powerful,
beautiful synced console-file logging. Woah!
## What else to say
### Happy logging!
""",
long_description_content_type="text/markdown",
package_dir={'': 'modules'},
packages=["reggol"],
include_package_data=False,
install_requires=[],
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)