-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
27 lines (26 loc) · 837 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
from setuptools import setup
setup(
name='django-loki',
version='0.1.0',
packages=['django_loki'],
url='https://github.com/zepc007/django-loki',
license='MIT',
author='zepc007',
author_email='[email protected]',
description='logging handler with loki for django',
keywords=['python', 'loki', 'grafana', 'logging', 'metrics'],
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',
'Development Status :: 3 - Alpha '
],
)