-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.48 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
[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",
]
dependencies = [
"argcomplete>=2.0.0",
"colorutils>=0.3.0",
"folium>=0.17.0",
"jsonpath_ng>=1.5.3",
"kaleido>=0.2.1",
"numpy>=1.22.3",
"plotly>=5.7.0",
"polyline>=2.0.2",
"scipy>=1.8.0",
]
description = "Tools for plotting routes, clusters and more from JSON"
dynamic = [
"version",
]
keywords = [
"visualization",
"vehicle routing",
"clustering",
"locations",
"geospatial",
"operations research",
]
license = { file = "LICENSE" }
maintainers = [
{ email = "[email protected]", name = "Nextmv" }
]
name = "nextplot"
readme = "README.md"
requires-python = ">=3.10"
[project.urls]
Homepage = "https://www.nextmv.io"
Documentation = "https://github.com/nextmv-io/nextplot"
Repository = "https://github.com/nextmv-io/nextplot"
[project.scripts]
nextplot = "nextplot.main:entry_point"
[tool.ruff]
target-version = "py312"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
line-length = 120
[tool.ruff.lint.mccabe]
max-complexity = 30
[tool.hatch.version]
path = "nextplot/__about__.py"