Template for my python projects
- Make your own package name π
- Replace
package/to new package name π - Replace command in
.github/workflows/main.ymlwith new package name π¨ - Replace command in
Makefilewith new package name - Replace name, description, author etc in
setup.pywith new package setting πββοΈ - Replace author, version in
package/__init__.pyto new package name - Setting codecov (https://docs.codecov.io/docs/quick-start) to your repo
- Make REAL runnable code π¨βπ»
- Make REAL test code π©π»βπ»
- Remove this README and make your own story! π
All runnable python scripts should be located in scripts/ folder
And you can run the scripts through under command
python -m scripts.run_sampleThis project use three Linter: black, isort, flake8
# use linter to fix code format
make style
# check lint error
make quality
All runnable test codes should be located in tests/ folder
pytestby @codertimo