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