aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 18c379f413d55c20c170643625a9bb520edebac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[project]
name = "metchart"
version = "0.0.1"
dependencies = [
	"metpy",
	"xarray",
	"cfgrib",
	"pyyaml",
	"cartopy",
]
description = "declarative weather chart plotter"
readme = "Readme.md"
license = {"file" = "LICENSE"}

[project.scripts]
metchart = "metchart.run:main"

[tool.setuptools.packages.find]
where = ["metchart/"]
include = ["metchart.*"]

[build-system]
requires = ['setuptools >= 61.0']
build-backend = "setuptools.build_meta"