-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 854 Bytes
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
[project]
name = "pywarp10"
version = "0.3.7"
description = "Simplify use of warpscript with python."
authors = [{ name = "Denis Roussel", email = "droussel@centreon.com" }]
requires-python = ">=3.10,<4.0"
dependencies = [
"py4j>=0",
"pandas>=2",
"dateparser>=1",
"durations>=0",
"tqdm>=4",
"requests>=2",
]
[dependency-groups]
dev = [
"pandas-stubs>=2.2.3.241126",
"ruff>=0.15.12",
"mypy>=1.20.2",
"types-dateparser>=1.4.0.20260508",
"types-requests>=2.33.0.20260508",
"pytest>=8.3.4",
"coverage-badge>=1",
"coverage>=7.6.8",
"pytest-mock>=3",
"pytest-cov>=6.1.1",
]
[tool.hatch.build.targets.sdist]
exclude = [
"tests",
"inst",
]
[tool.hatch.build.targets.wheel]
exclude = [
"tests",
"inst",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"