I realized that the templates for a python application and a python "utility package" (only "package" from now on as opposed to "application") do have some differences.
Those differences are mainly induced by the way requirements should be handled (closed requirements for applications vs open requirements for packages) and impact:
- the Makefile (
make install in particular, but also should be revised the usage of setup and setup_ci since they install close requirements)
- the CI/CD workflows (they use make commands and, in case of packages, it could be useful testing open requirements)
I realized that the templates for a python application and a python "utility package" (only "package" from now on as opposed to "application") do have some differences.
Those differences are mainly induced by the way requirements should be handled (closed requirements for applications vs open requirements for packages) and impact:
make installin particular, but also should be revised the usage of setup and setup_ci since they install close requirements)