diff options
-rw-r--r-- | examples/config.yaml (renamed from config.yaml) | 0 | ||||
-rw-r--r-- | pyproject.toml | 1 | ||||
-rw-r--r-- | requirements.txt | 5 | ||||
-rw-r--r-- | testsetup.sh | 6 |
4 files changed, 7 insertions, 5 deletions
diff --git a/config.yaml b/examples/config.yaml index 4f2a23b..4f2a23b 100644 --- a/config.yaml +++ b/examples/config.yaml diff --git a/pyproject.toml b/pyproject.toml index 53cd3e7..3dbfe5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,6 +10,7 @@ dependencies = [ ] description = "declarative weather chart plotter" readme = "Readme.md" +license = {"file" = "LICENSE"} [project.scripts] metchart = "metchart.run:main" diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 5b491b3..0000000 --- a/requirements.txt +++ /dev/null @@ -1,5 +0,0 @@ -metpy -xarray -cfgrib -pyyaml -cartopy diff --git a/testsetup.sh b/testsetup.sh new file mode 100644 index 0000000..abe19dc --- /dev/null +++ b/testsetup.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +[ ! -f venv/bin/activate ] && python -m virtualenv venv +source venv/bin/activate + +pip install -e . |