-
Notifications
You must be signed in to change notification settings - Fork 52
/
pyproject.toml
38 lines (32 loc) · 985 Bytes
/
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
[tool.poetry]
name = "simple-parsing"
version = "0.0.0"
description = "A small utility for simplifying and cleaning up argument parsing scripts."
authors = ["Fabrice Normandin <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
docstring-parser = "~=0.15"
typing-extensions = ">=4.5.0"
pyyaml = {version = "^6.0.1", optional = true}
tomli = {version = "^2.0.1", optional = true}
tomli-w = {version = "^1.0.0", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-xdist = "^3.5.0"
pytest-regressions = "^2.4.2"
pytest-cov = "^4.1.0"
numpy = "^1.24.2"
pytest-benchmark = "^4.0.0"
matplotlib = "^3.7.0"
orion = "^0.1.0"
kaleido = "0.2.1"
[tool.poetry.extras]
yaml = ["pyyaml"]
toml = ["tomli", "tomli_w"]
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"