-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 900 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 900 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
25
26
27
28
29
from pathlib import Path
from setuptools import setup
setup(
name='log_utils',
description='Utils for generic python logging package',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
author='Willy Polychenko',
author_email='wolf1986@gmail.com',
url='https://github.com/wolf1986/log_utils',
version='0.4.1',
packages=[
'log_utils',
'log_utils/data_logger',
'log_utils/data_logger/contrib'
],
install_requires=['colorama', 'colorlog'],
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)