A minimalist template to start a new Python project.
- From github web interface, use this repo as a template to start your new project, then you can clone your project into your local machine.
git mv my_package your_prj_name
(By the way, if you need inspiration on deciding your project name, read this.)- Modify
setup.cfg
and thisREADME.md
, possibly alsoLICENSE
. - Commit your change. You are now ready to work on YOUR project!
- Optionally, rename
your_prj_name/main_module.py
into your preferred module name. If you do so, do not forget to also modifyyour_prj_name/__init__.py
accordingly.