-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 832 Bytes
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
[tool.poetry]
name = "xcsv-plot-map"
version = "0.4.2"
description = "Subpackage to plot and locate on a map, data from extended CSV (XCSV) files"
authors = ["Paul Breen <pbree@bas.ac.uk>"]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/paul-breen/xcsv-plot-map"
homepage = "https://github.com/paul-breen/xcsv-plot-map"
documentation = "https://github.com/paul-breen/xcsv-plot-map/blob/main/README.md"
packages = [
{include = "xcsv/plot_map"}
]
[tool.poetry.scripts]
xcsv_plot_map = "xcsv.plot_map.__main__:main"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
xcsv-plot = "^0"
matplotlib = "^3.5.2"
Cartopy = "^0.21.1"
shapely = "^2.0.1"
scipy = "^1.8.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"