-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
33 lines (31 loc) · 968 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
28
29
30
31
32
33
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="logzio-python-handler",
use_scm_version=True,
description="Logging handler to send logs to your Logz.io account with bulk SSL",
keywords="logging handler logz.io bulk https",
author="roiravhon",
maintainer="tamir-michaeli",
mail="[email protected]",
url="https://github.com/logzio/logzio-python-handler/",
license="Apache License 2",
packages=find_packages(),
install_requires=[
"requests>=2.27.0",
"protobuf>=3.20.2"
],
extras_require={
"opentelemetry-logging": ["opentelemetry-instrumentation-logging==0.45b0"]
},
test_requires=[
"future"
],
setup_requires=['setuptools_scm'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.9'
]
)