This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.cfg
60 lines (54 loc) · 1.6 KB
/
setup.cfg
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
58
59
60
[metadata]
name = grafana_api
friendly_name = Python Grafana API
description = Yet another Python library for Grafana API
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
author = Andrew Prokhorenkov
author_email = [email protected]
copyright = Copyright 2017-2020 Andrew Prokhorenkov <[email protected]>
url = https://github.com/m0nhawk/grafana_api/
project_urls =
Source = https://github.com/m0nhawk/grafana_api/
Tracker = https://github.com/m0nhawk/grafana_api/issues
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Internet
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
keywords = grafana api
[options]
use_scm_version = True
python_requires = >=3.6
packages = find:
include_package_data = True
zip_safe = False
setup_requires =
setuptools_scm>=4.0
install_requires =
requests>=2.23.0
[options.extras_require]
test =
codecov>=2.1.0
coverage>=5.2.0
unittest-xml-reporting>=3.0.0
requests-mock>=1.8.0
[options.packages.find]
where = .
exclude = test
[bdist_wheel]
universal = true
[tool.setuptools_scm]
local_scheme = no-local-version
version_scheme = python-simplified-semver
write_to = grafana_api/version.py