Validate CSV output schemas

Also moved code dir to src.
There are reasons to do standard things in standard ways. While it is
possible to get the `code/` directory to work, and recognize it as a
package path, this requires wrangling the pyproject.toml file.
Additionally, any import from the `code.something` path automatically
shadows the python stdlib `code` module. While it may not be necessary,
it still is good to not shadow standard library modules.
This commit is contained in:
Marty Oehme 2025-09-30 22:14:30 +02:00
parent de96b67fac
commit 2faeda87c3
Signed by: Marty
GPG key ID: 4E535BC19C61886E
14 changed files with 111 additions and 7 deletions

View file

@ -3,16 +3,16 @@ default: versioned
all: files kernels unique packages
files:
python code/files.py input output
python src/files.py input output
kernels:
python code/kernels.py input output
python src/kernels.py input output
unique:
python code/unique.py input output
python src/unique.py input output
packages:
python code/packages.py input output
python src/packages.py input output
versioned:
datalad run -m "Create updated output data" -i input/ -o output/ just all