-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
36 lines (33 loc) · 1.22 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
coverage_string: str = ""
long_description: str = fh.read()
long_description = long_description.replace(coverage_string, "")
setuptools.setup(
name="grafana-api-sdk",
version="0.8.0",
author="Pascal Zimmermann",
description="A Grafana API SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ZPascal/grafana_api_sdk",
project_urls={
"Source": "https://github.com/ZPascal/grafana_api_sdk",
"Bug Tracker": "https://github.com/ZPascal/grafana_api_sdk/issues",
"Documentation": "https://zpascal.github.io/grafana_api_sdk/",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved",
"Operating System :: OS Independent",
],
license="Apache-2.0 License",
packages=["grafana_api"],
install_requires=["httpx"],
extras_require={
"http2": ["httpx[http2]"],
},
tests_require=["pytest-httpx", "pytest"],
python_requires=">=3.8",
)