Skip to content

Commit

Permalink
cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchobben committed Aug 2, 2024
1 parent 20f23f8 commit 22accba
Show file tree
Hide file tree
Showing 4 changed files with 655 additions and 3 deletions.
62 changes: 60 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,63 @@
#Files
# Secrets
.env

# Temporary and binary files
/.quarto/
/_book/
/data/
/data/
*_files/
.jupyter_cache/
*~
*.py[cod]
*.so
*.cfg
!.isort.cfg
!setup.cfg
*.orig
*.log
*.pot
__pycache__/*
.cache/*
.*.swp
.ipynb_checkpoints/*
.DS_Store

# Project files
.ropeproject
.project
.pydevproject
.settings
.idea
.vscode
tags

# Package files
*.egg
*.eggs/
.installed.cfg
*.egg-info

# Unittest and coverage
htmlcov/*
.coverage
.tox
junit.xml
coverage.xml
.pytest_cache/

# Build and docs folder/files
build/*
dist/*
sdist/*
docs/api/*
docs/_rst/*
docs/_build/*
cover/*
MANIFEST

# Per-project virtualenvs
.venv*/
venv

# Make file markers
.install*
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ post-render:
for i in $(QMD); do quarto convert $$i; done
- mv chapters/*.ipynb notebooks/ >/dev/null 2>&1
- for f in chapters/*.quarto_ipynb ; do mv -- "$f" "${f%.quarto_ipynb}.ipynb" >/dev/null 2>&1; done
python assets/filters/clean-nb.py
python src/clean-nb.py
cp Makefile notebooks/

data:
Expand Down
Loading

0 comments on commit 22accba

Please sign in to comment.