An expressive datetime library for Python.
When-Exactly is still a work-in-progress.
Check out the documentation at when-exactly.nicobako.me.
# windows
py -3.13 -m venv .venv
source .venv/Scripts/activate
# linux
python3.13 -m venv .venv
source .venv/bin/activate
# both
pip install -r requirements.txt
pip install -e .
pre-commit install
pip install \
pytest \
pytest-cov \
mkdocs \
pre-commit \
build \
twine \
pip freeze > requirements.txt
pytest .
# live-preview
mkdocs serve
# deploy
mkdocs gh-deploy
python -m build
python -m twine upload dist/*