|
| 1 | +[metadata] |
| 2 | +name = grafana_api |
| 3 | +friendly_name = Python Grafana API |
| 4 | +description = Yet another Python library for Grafana API |
| 5 | +long_description = file: README.md |
| 6 | +long_description_content_type = text/markdown |
| 7 | +license = MIT |
| 8 | +license_file = LICENSE |
| 9 | +author = Andrew Prokhorenkov |
| 10 | +author_email = andrew.prokhorenkov@gmail.com |
| 11 | +copyright = Copyright 2017-2020 Andrew Prokhorenkov <andrew.prokhorenkov@gmail.com> |
| 12 | +url = https://github.com/m0nhawk/grafana_api/ |
| 13 | +project_urls = |
| 14 | + Source = https://github.com/m0nhawk/grafana_api/ |
| 15 | + Tracker = https://github.com/m0nhawk/grafana_api/issues |
| 16 | +classifiers = |
| 17 | + Development Status :: 4 - Beta |
| 18 | + Intended Audience :: Developers |
| 19 | + License :: OSI Approved :: MIT License |
| 20 | + Operating System :: OS Independent |
| 21 | + Programming Language :: Python :: 3 |
| 22 | + Programming Language :: Python :: 3.6 |
| 23 | + Programming Language :: Python :: 3.7 |
| 24 | + Programming Language :: Python :: 3.8 |
| 25 | + Topic :: Internet |
| 26 | + Topic :: Software Development |
| 27 | + Topic :: Software Development :: Libraries |
| 28 | + Topic :: Software Development :: Libraries :: Python Modules |
| 29 | +keywords = grafana api |
| 30 | + |
| 31 | +[options] |
| 32 | +use_scm_version = True |
| 33 | +python_requires = >=3.6 |
| 34 | +packages = find: |
| 35 | +include_package_data = True |
| 36 | +zip_safe = False |
| 37 | +setup_requires = |
| 38 | + setuptools_scm>=4.0 |
| 39 | + |
| 40 | +install_requires = |
| 41 | + requests>=2.23.0 |
| 42 | + |
| 43 | +[options.extras_require] |
| 44 | +test = |
| 45 | + codecov>=2.1.0 |
| 46 | + coverage>=5.2.0 |
| 47 | + unittest-xml-reporting>=3.0.0 |
| 48 | + requests-mock>=1.8.0 |
| 49 | + |
| 50 | +[options.packages.find] |
| 51 | +where = . |
| 52 | +exclude = test |
| 53 | + |
| 54 | +[bdist_wheel] |
| 55 | +universal = true |
| 56 | + |
| 57 | +[tool.setuptools_scm] |
| 58 | +local_scheme = no-local-version |
| 59 | +version_scheme = python-simplified-semver |
| 60 | +write_to = grafana_api/version.py |
0 commit comments