-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 1.27 KB
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
import os
from setuptools import setup
import nrt_logging
PATH = os.path.dirname(__file__)
with open(os.path.join(PATH, 'requirements.txt')) as f:
requirements = f.read().splitlines()
with open(os.path.join(PATH, 'README.md')) as f:
readme = f.read()
setup(
name='nrt-logging',
version=nrt_logging.__version__,
author='Eyal Tuzon',
author_email='eyal.tuzon.dev@gmail.com',
description='Hierarchical logging in yaml format',
keywords='python python3 python-3 logging logger log loggers'
' logging-library logging-framework hierarchical hierarchy'
' yaml nrt nrt-logging',
long_description_content_type='text/markdown',
long_description=readme,
url='https://github.com/etuzon/python-nrt-logging',
packages=['nrt_logging'],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=[requirements],
data_files=[('', ['requirements.txt'])],
)