No description
Find a file
2023-02-10 16:59:18 -05:00
.helix python project scaffold 2023-02-10 15:25:38 -05:00
src/python_template rename -> python_template 2023-02-10 16:04:32 -05:00
.gitignore python project scaffold 2023-02-10 15:25:38 -05:00
LICENSE.md python project scaffold 2023-02-10 15:25:38 -05:00
pdm.lock python project scaffold 2023-02-10 15:25:38 -05:00
pyproject.toml add entrypoints 2023-02-10 16:59:18 -05:00
README.md add entrypoints 2023-02-10 16:59:18 -05:00

Python Template Project

Installing

pip install python_template-$VERSION-py3-none-any.whl

Building

pip install pdm
pdm build
pip install python_template-$VERSION-py3-none-any.whl

Developing

# Install PDM
pip install pdm
# Install dependencies and create virtualenv
pdm install
# Run CLI
pdm run main
# Clean code
pdm fmt
# Test code
pdm check