-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (38 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
52 lines (38 loc) · 982 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
45
46
47
48
49
50
51
52
[tool.poetry]
name = "bench"
version = "0.1.0"
description = "PyVRP's benchmarking tool."
authors = [
"Niels Wouda <nielswouda@gmail.com>",
"Leon Lan <leon.lanyidong@gmail.com>",
"Wouter Kool <wouter.kool@ortec.com>",
]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11"
numpy = [
# Numpy 1.26 is the first version of numpy that supports Python 3.12+.
{ version = ">=1.15.2", python = "<3.12" },
{ version = ">=1.26.0", python = ">=3.12" }
]
tqdm = "^4.64.1"
tomli = "^2.0.1"
[tool.poetry.scripts]
bench = "bench.cli:main"
[tool.black]
line-length = 79
[tool.ruff]
ignore-init-module-imports = true
line-length = 79
select = [
"E", "F", "I", "NPY", "PYI", "Q", "RET", "RSE", "RUF", "SLF", "SIM", "TCH"
]
[tool.ruff.isort]
case-sensitive = true
known-first-party = ["bench", "tests"]
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"