A simple template project for my python scripts.
- bin - shell wrappers
- etc - configuration files
- my_app1 - module source code
- tests - test cases
- setup.py - the main setup script
- requirements.txt - dependencies
python -m venv venv
# Unix
. venv/bin/activate
# PowerShell
venv\Scripts\Activate.ps1
pip install wheel
python setup.py build
python setup.py bdist_wheel