Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ data/
!tests/data

# Temp notebook
scripts/explore.ipynb
scripts/
__marimo__/

# Python-generated files
__pycache__/
Expand Down
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ build-docker:

run-docker +ARGS='': build-docker
docker run {{ DOCKER_TAG }} -- {{ ARGS }}

release:
rm -f dist/*
uv version --bump patch
uv build
uv publish --token "${PYPI_MINDLOGGER_DATA_EXPORT_KEY}"
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mindlogger-data-export"
version = "0.1.6"
version = "0.1.10"
description = "Add your description here"
readme = "README.md"
authors = [
Expand All @@ -11,6 +11,7 @@ dependencies = [
"lark>=1.2.2",
"packaging>=24.2",
"polars>=1.31.0",
"rich>=14.2.0",
"tyro>=0.9.5",
"xlsxwriter>=3.2.5",
]
Expand Down
Loading