-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 2.07 KB
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
[tool.poetry]
name = "parides"
version = "0.0.0"
description = "Efficiently convert Prometheus metrics to Pandas DataFrames and Parquet/CSV files for Data Science."
authors = ["Georg Öttl <georg.oettl@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/goettl79/parides"
repository = "https://github.com/goettl79/parides"
documentation = "https://github.com/goettl79/parides#usage"
keywords = [
"prometheus", "pandas", "data-science", "time-series",
"metrics", "parquet", "csv", "analysis", "monitoring",
"export", "etl", "machine-learning", "prometheus-export"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Typing :: Typed",
]
packages = [{include = "parides"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/goettl79/parides/issues"
"Source" = "https://github.com/goettl79/parides"
"Docker Images" = "https://github.com/goettl79/parides/pkgs/container/parides"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pandas = "^2.0.0"
requests = "^2.25.0"
pytz = "^2023.3"
python-dateutil = "^2.8.2"
numpy = "^1.24.0"
pyarrow = "^23.0.1"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
flake8 = "^7.0.0"
pytest-mock = "^3.15.1"
poetry-dynamic-versioning = "^1.2.0"
[tool.poetry.scripts]
parides = "parides.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests/unit"]
markers = [
"integration: marks tests as integration tests (select with '-m integration')",
]