Notes on packaging Python code.
- part1 - basics
- A very basic python package that has no dependencies on third party packages. How to use packages by (i) adding to the Python path, (ii) installing the code manually in the standard package location, and (iii) using the build module and pip-install.
- part2 - bells-and-whistles
- Moving past the utter simplicity of the above by (i) adding more metadata, (ii) using setup.py in addition to setup.cfg and (iii) using a manifest to add non-python files. Under construction.