Move code to code dir
Follow yoda
This commit is contained in:
parent
e18669065e
commit
1084d78c3e
15 changed files with 12 additions and 5 deletions
0
src/.gitattributes → code/.gitattributes
vendored
0
src/.gitattributes → code/.gitattributes
vendored
10
justfile
10
justfile
|
|
@ -5,16 +5,16 @@ clean: files kernels unique packages
|
||||||
test:
|
test:
|
||||||
|
|
||||||
files:
|
files:
|
||||||
python src/files.py input output
|
python code/files.py input output
|
||||||
|
|
||||||
kernels:
|
kernels:
|
||||||
python src/kernels.py input output
|
python code/kernels.py input output
|
||||||
|
|
||||||
unique:
|
unique:
|
||||||
python src/unique.py input output
|
python code/unique.py input output
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
python src/packages.py input output
|
python code/packages.py input output
|
||||||
|
|
||||||
versioned:
|
versioned:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
@ -40,4 +40,4 @@ validate:
|
||||||
# 2018-05-09 is the first date of recording available
|
# 2018-05-09 is the first date of recording available
|
||||||
getraw:
|
getraw:
|
||||||
uv sync --locked
|
uv sync --locked
|
||||||
uv run python src/get_raw.py --dir input --delay 1 2018-05-09
|
uv run python code/get_raw.py --dir input --delay 1 2018-05-09
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,13 @@ dependencies = [
|
||||||
"yarl>=1.22.0",
|
"yarl>=1.22.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["hatchling"]
|
||||||
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
|
[tool.hatch.build.targets.wheel]
|
||||||
|
packages = ["code"]
|
||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
dev = [
|
dev = [
|
||||||
"dataframely>=1.13.0",
|
"dataframely>=1.13.0",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue