blob: d5f2744b87e8e773a46503e9ed81161c610f29d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[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", "metchart.*"]
[build-system]
requires = ['setuptools >= 61.0']
build-backend = "setuptools.build_meta"
|