aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 53cd3e71f697f6ee61100cd231402634521d100d (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"

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

[tool.setuptools.packages.find]
include = [
	"metchart"
]

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