-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
78 lines (72 loc) · 2.36 KB
/
pyproject.toml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "grafana-pandas-datasource"
version = "0.3.0"
description = "Serve NumPy data via pandas data frames to Grafana"
authors = [
"Andreas Motl <[email protected]>",
"Linar <[email protected]>"
]
license = "AGPL-3.0"
readme = "README.rst"
include = [
"LICENSE",
"CHANGES.rst"
]
homepage = "https://community.panodata.org/t/grafana-python-datasource-using-pandas-for-timeseries-and-table-data/148"
repository = "https://github.com/panodata/grafana-pandas-datasource"
keywords = [
"grafana",
"pandas",
"datasource",
"grafana-plugin",
"grafana-datasource",
"pandas-dataframe"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Archiving",
"Topic :: Text Processing",
"Topic :: Utilities",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
]
[tool.poetry.urls]
"Issues" = "https://github.com/panodata/grafana-pandas-datasource/issues"
[tool.poetry.dependencies]
python = "^3.7.1"
pandas = "^1.3"
flask = "^1.1.4"
flask-cors = "^3.0.10"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"