Hacker News new | ask | show | jobs
by jrib 810 days ago
what do you put in your Makefile?
1 comments

make env = create environment and pip install editable mode (I typically list dev and test dependencies as optional-dependencies in pyproject.toml) make test = test, coverage, ... make docs = sphinx-build ... make release = build, twine, ...

I try to keep things simple.