-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (63 loc) · 1.53 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling >= 1.13.0"]
[project]
authors = [
{ email = "[email protected]", name = "Nextmv" }
]
classifiers = [
"License :: OSI Approved :: Apache Software 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"
]
dependencies = [
"pydantic>=2.5.2",
"urllib3>=2.1.0",
"requests>=2.31.0",
"pyyaml>=6.0.1",
]
description = "The Python SDK for Nextmv"
dynamic = [
"version",
]
keywords = [
"decision engineering",
"decision science",
"decisions",
"nextmv",
"optimization",
"operations research",
"shift scheduling",
"solver",
"vehicle routing problem",
]
license = { file = "LICENSE" }
maintainers = [
{ email = "[email protected]", name = "Nextmv" }
]
name = "nextmv"
readme = "README.md"
requires-python = ">=3.8"
[project.urls]
Homepage = "https://www.nextmv.io"
Documentation = "https://www.nextmv.io/docs"
Repository = "https://github.com/nextmv-io/nextmv-py"
[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 = "nextmv/__about__.py"