Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/martin-majlis/python-project-template

Minimal setup for mini python project.
https://github.com/martin-majlis/python-project-template

python3 template-repository

Last synced: 10 days ago
JSON representation

Minimal setup for mini python project.

Awesome Lists containing this project

README

        

# Python Project Template

Minimal setup for mini python project.

- [pre-commit](https://pre-commit.com/) - to make sure that only code following coding standards could be committed
- [prettier](https://prettier.io/) - to make sure that all the source code is well formatted
- [black](https://black.readthedocs.io/en/stable/) - code formatter for Python files
- [isort](https://pycqa.github.io/isort/) - to keep imports well organized
- [flake8](https://flake8.pycqa.org/en/latest/) - to enforce coding standards
- [mypy](http://mypy-lang.org/) - to make sure that types are matching