Write a small description of the package.
Install the package from GitHub.
(venv) C:\Users\Adrien>pip install git+https://github.com/afaucon/templated_package.git@v0.0.1
(venv) C:\Users\Adrien>pip list
Clone the package from GitHub and install it in editable mode (i.e. setuptools "develop mode").
(venv) C:\Users\Adrien>git clone git+https://github.com/afaucon/templated_package.git
(venv) C:\Users\Adrien>pip install --editable templated_package
(venv) C:\Users\Adrien>pip list
Within a python module:
import templated_package
templated_package.__author__
templated_package.__version__
import templated_package.module
templated_package.service_1()
With the command line interface:
(venv) C:\Users\Adrien>python -m templated_package service_1
Or directly:
(venv) C:\Users\Adrien>templated_package service_1