forked from zepc007/django-loki
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (25 loc) · 857 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
from setuptools import setup
setup(
name='django-loki-reloaded',
version='1.0.3',
packages=['django_loki_reloaded'],
url='https://github.com/h3nnn4n/django-loki-reloaded',
license='MIT',
author='h3nnn4n',
author_email='[email protected]',
description='A non-blocking django logging handler for Loki',
keywords=['python', 'loki', 'grafana', 'logging', 'metrics', 'threaded'],
install_requires=[
'requests',
'pytz',
],
classifiers=[
'License :: OSI Approved :: MIT License',
"Environment :: Web Environment",
'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',
],
)