This repo gives an exemple of how a repo can be nicely initiated
- Update the `src/package_name/init.py
- Rename the
src/pagkage-namefolder into a proper name - Update the
./setup.cfgand./setup.pyscripts - ONCE THIS IS DONE: Refactor this
README.md
python3 -m venv venvfor initialising the virtual environmentsource venv/bin/activatefor activating the virtual environmentpip install --upgrade pipfor upgrading pip
The following commands shall be ran after activating the virtual environment.
pip install -r requirements.txtfor the functional dependenciespip install -r requirements-dev.txtfor the development dependenciespip install -e .for installing locally the current repopre-commit installfor installing the precommit hook