-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.54 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bas_geoplot"
description = "GeoPlot: BAS AI Lab plotting scripts for internal plotting & visualisation"
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 :: 3 - Alpha",
"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",
"Geoscience",
"Visualisation"]
dynamic = ["version", "dependencies"]
[tool.setuptools]
packages = ["bas_geoplot"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "bas_geoplot.__version__"}
[project.urls]
Homepage = "https://www.bas.ac.uk/project/autonomous-marine-operations-planning"
Repository = "https://github.com/bas-amop/GeoPlot"
Issues = "https://github.com/bas-amop/GeoPlot/issues"
[project.scripts]
plot_mesh = "bas_geoplot.cli:plot_mesh_cli"