-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
86 lines (78 loc) · 2.11 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
79
80
81
82
83
84
85
86
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel", "cibuildwheel", "hatch", "ruff"]
[project]
authors = [
{ email = "[email protected]", name = "Nextmv" }
]
classifiers = [
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pydantic>=2.5.2",
]
description = "Nextroute is an engine for solving Vehicle Routing Problems (VRPs)."
dynamic = [
"version",
]
keywords = [
"decision engineering",
"decision science",
"decisions",
"nextmv",
"optimization",
"operations research",
"solver",
"vehicle routing problem",
]
license = { file = "LICENSE" }
maintainers = [
{ email = "[email protected]", name = "Nextmv" }
]
name = "nextroute"
readme = "README.md"
requires-python = ">=3.8"
[project.urls]
Homepage = "https://www.nextmv.io"
Documentation = "https://www.nextmv.io/docs/vehicle-routing"
Repository = "https://github.com/nextmv-io/nextroute"
[tool.ruff]
target-version = "py38"
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
line-length = 120
[tool.hatch.version]
path = "src/nextroute/__about__.py"
[tool.setuptools.packages.find]
where = ["src/"]
exclude = ["tests"]
[tool.setuptools.package-data]
nextroute = ["bin/*.exe"]
[tool.cibuildwheel]
test-command = 'python -c "exec(\"import nextroute\nprint(nextroute.nextroute_version())\")"'
build = "cp3{8,9,10,11,12,13}-*"
skip = "*musllinux*"
archs = "native"
manylinux-x86_64-image = "quay.io/pypa/manylinux_2_28_x86_64"
manylinux-aarch64-image = "quay.io/pypa/manylinux_2_28_aarch64"
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]
before-all = """
dnf update -y
dnf -y install go
"""