forked from mojtabaakbari221b/django_otlp_log_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 794 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
import setuptools
with open("README.md", "r") as f:
description = f.read()
setuptools.setup(
name="django-otlp-log-exporter",
version="1.0.3",
author="Mojtaba Akbari",
author_email="mojtaba.akbari.221b@gmail.com",
packages=["otlp_exporter"],
description="integrate Django & SDK provided by OpenTelemetry and directly forward the logs from the application to OpenTelemetry.",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/mojtabaakbari221b/django_otlp_log_exporter",
license='MIT',
python_requires='>=3.7',
install_requires=[
'opentelemetry-sdk >= 1.16.0',
'opentelemetry-api >= 1.16.0',
'opentelemetry-exporter-otlp >= 1.16.0',
'Django >= 3.2',
],
)