forked from MatthewScholefield/loguru-logging-intercept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 923 Bytes
/
setup.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
from setuptools import setup
with open('README.md', mode='r') as f:
LONG_DESC = f.read()
setup(
name='loguru-logging-intercept',
version='0.1.4',
description='Code to integrate Loguru with Python\'s standard logging module',
long_description=LONG_DESC,
long_description_content_type='text/markdown',
url='https://github.com/MatthewScholefield/loguru-logging-intercept',
author='Matthew D. Scholefield',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='loguru logging intercept',
py_modules=['loguru_logging_intercept'],
install_requires=[
'loguru'
],
)