-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
30 lines (26 loc) · 869 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
from codecs import open
from os import path
# Always prefer setuptools over distutils
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
about = {}
with open(path.join(here, "bk_monitor_report", "__version__.py"), "r", encoding="utf-8") as f:
exec(f.read(), about)
long_description = "custom reporter python sdk for bk-monitor"
version = about["__version__"]
setup(
name="bk-monitor-report",
version=version,
description="bk-monitor-report", # noqa
long_description=long_description,
url="https://github.com/TencentBlueKing/bk-monitor-report",
author="TencentBlueKing",
author_email="contactus_bk@tencent.com",
include_package_data=True,
packages=find_packages(),
install_requires=[
"requests>=2.20.0",
"prometheus-client>=0.9.0,<1.0.0",
],
zip_safe=False,
)