diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-10-15 00:05:51 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-10-15 00:05:51 +0200 |
commit | 244e7a27a9a6dca97e0a21bd29bd49e463e243e5 (patch) | |
tree | 8ff73800edf228df24ed219d926aa6c0813d6847 /pyproject.toml | |
parent | 185a43cede974de9ac18bec6312f892a7929346f (diff) | |
parent | 32863e21fa16e949fc20c4588e84b90916265367 (diff) | |
download | meteo_toolbox-244e7a27a9a6dca97e0a21bd29bd49e463e243e5.tar.gz |
Merge branch 'package_python'
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3dbfe5c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,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" |