forked from GreyZmeem/python-logging-loki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.19 KB
/
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
31
32
33
34
35
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="python-logging-loki",
version="0.3.1",
description="Python logging handler for Grafana Loki.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="Andrey Maslov",
author_email="greyzmeem@gmail.com",
url="https://github.com/greyzmeem/python-logging-loki",
packages=setuptools.find_packages(exclude=("tests",)),
python_requires=">=3.6",
install_requires=["rfc3339>=6.1", "requests"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: Internet :: WWW/HTTP",
],
)