aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 3dbfe5cb80d7f904eab581c5649a77cb0e023593 (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
25
[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]
include = [
	"metchart"
]

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