diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-10-18 22:30:46 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-10-18 22:30:46 +0200 |
commit | 1fc50ec16abe8b338258c250b85dac0e966ada96 (patch) | |
tree | 4328b0bd08f684264135f50d9c7bcdefa13ad05f | |
parent | f544a79a340f2273f686d789e7286a6fdc532d49 (diff) | |
download | meteo_toolbox-1fc50ec16abe8b338258c250b85dac0e966ada96.tar.gz |
pyproject fix packages
-rw-r--r-- | pyproject.toml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml index 3dbfe5c..ba28354 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ dependencies = [ "xarray", "cfgrib", "pyyaml", - "cartopy" + "cartopy", ] description = "declarative weather chart plotter" readme = "Readme.md" @@ -16,9 +16,7 @@ license = {"file" = "LICENSE"} metchart = "metchart.run:main" [tool.setuptools.packages.find] -include = [ - "metchart" -] +where = ["metchart/"] [build-system] requires = ['setuptools >= 61.0'] |