Hacker News new | ask | show | jobs
by eltradero 812 days ago
Thumbs up, plus a well-maintained Makefile that I share among my projects. Never had any issues. Github matricx test runners ensure that everything works across platforms, Python and dep versions, ...
1 comments

what do you put in your Makefile?
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.