forked from Checkmk/checkmk_kube_agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 1.66 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
from src import checkmk_kube_agent
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = [
"cachetools==5.0.0",
"fastapi==0.73.0",
"pydantic==1.9.0",
"requests==2.27.1",
"urllib3==1.26.8",
"uvicorn==0.17.5",
"gunicorn==20.1.0",
]
setup(
author="Checkmk GmbH",
author_email="[email protected]",
python_requires=">=3.10",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
],
description="Checkmk node and cluster collectors to monitor Kubernetes clusters.",
entry_points={
"console_scripts": [
"checkmk-cluster-collector=checkmk_kube_agent.api:main",
(
"checkmk-container-metrics-collector"
"=checkmk_kube_agent.send_metrics:main_container_metrics"
),
(
"checkmk-machine-sections-collector"
"=checkmk_kube_agent.send_metrics:main_machine_sections"
),
],
},
install_requires=requirements,
license="GNU General Public License v2",
long_description=readme,
include_package_data=True,
keywords="checkmk_kube_agent",
name="checkmk_kube_agent",
packages=find_packages("src"),
package_dir={"": "src"},
url="https://github.com/checkmk/checkmk_kube_agent",
version=checkmk_kube_agent.__version__,
zip_safe=False,
)