-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
76 lines (69 loc) · 2.29 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "polar-route"
description = "PolarRoute: Long-distance maritime polar route planning taking into account complex changing environmental conditions"
authors = [
{name = "Autonomous Marine Operations Planning (AMOP) Team, AI Lab, British Antarctic Survey", email = "amop@bas.ac.uk"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.8"
classifiers = ["Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.14"
]
keywords= ["Polar Science",
"Marine Routing",
"Marine Science",
"Marine Operations"]
dynamic = ["version", "dependencies"]
[tool.setuptools]
packages = {find = {}}
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "polar_route.__version__"}
[project.urls]
Homepage = "https://www.bas.ac.uk/project/autonomous-marine-operations-planning"
Documentation = "https://antarctica.github.io/PolarRoute"
Repository = "https://github.com/antarctica/PolarRoute"
Issues = "https://github.com/antarctica/PolarRoute/issues"
[project.scripts]
add_vehicle = "polar_route.cli:add_vehicle_cli"
optimise_routes = "polar_route.cli:optimise_routes_cli"
calculate_route = "polar_route.cli:calculate_route_cli"
resimulate_vehicle = "polar_route.cli:resimulate_vehicle_cli"
extract_routes = "polar_route.cli:extract_routes_cli"
[tool.pytest.ini_options]
log_cli = true
log_format = "[%(asctime)s] %(levelname)s : %(message)s"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')"
]
[dependency-groups]
dev = [
"pre-commit",
]
docs = [
"mkdocs",
"mkdocs-autoapi",
"mkdocs-include-markdown-plugin",
"mkdocstrings[python]",
"mkdocs-material",
]
test = [
"pytest",
"pytest-xdist",
]