Skip to content

Commit 33eb875

Browse files
authored
Lots of changes.. (#4)
* Lots * Add unimplemented error to JSON path * Remove options processor test * Remove e2e test, unused * Remove unused test * Remove ymha-specific script * add rich module * Use logger object in main * Remove outdated jupyter notebooks * ignore scripts dir * fix schema * Init internal schema types * remove unused pyright annotation * Remove initial JSON export integration.
1 parent 3d4f89e commit 33eb875

26 files changed

Lines changed: 1653 additions & 5332 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ data/
33
!tests/data
44

55
# Temp notebook
6-
scripts/explore.ipynb
6+
scripts/
7+
__marimo__/
78

89
# Python-generated files
910
__pycache__/

justfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,9 @@ build-docker:
1212

1313
run-docker +ARGS='': build-docker
1414
docker run {{ DOCKER_TAG }} -- {{ ARGS }}
15+
16+
release:
17+
rm -f dist/*
18+
uv version --bump patch
19+
uv build
20+
uv publish --token "${PYPI_MINDLOGGER_DATA_EXPORT_KEY}"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mindlogger-data-export"
3-
version = "0.1.6"
3+
version = "0.1.10"
44
description = "Add your description here"
55
readme = "README.md"
66
authors = [
@@ -11,6 +11,7 @@ dependencies = [
1111
"lark>=1.2.2",
1212
"packaging>=24.2",
1313
"polars>=1.31.0",
14+
"rich>=14.2.0",
1415
"tyro>=0.9.5",
1516
"xlsxwriter>=3.2.5",
1617
]

0 commit comments

Comments
 (0)