Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/martin-majlis/python-project-template
- Owner: martin-majlis
- License: mit
- Created: 2021-08-31T05:30:24.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-31T09:13:04.000Z (about 3 years ago)
- Last Synced: 2024-01-17T00:16:32.715Z (10 months ago)
- Topics: python3, template-repository
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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