Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmitriiweb/template-project-python
Template for Python projects
https://github.com/dmitriiweb/template-project-python
boilerplate code generator poetry poetry-generator python
Last synced: 13 days ago
JSON representation
Template for Python projects
- Host: GitHub
- URL: https://github.com/dmitriiweb/template-project-python
- Owner: dmitriiweb
- License: mit
- Created: 2022-02-06T10:40:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-03T09:19:13.000Z (almost 3 years ago)
- Last Synced: 2024-11-12T10:17:45.152Z (2 months ago)
- Topics: boilerplate, code, generator, poetry, poetry-generator, python
- Language: Python
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple template for a new Python project
## Requirements
- 3.7 <= Python < 3.11
- [poetry](https://python-poetry.org/docs/)
- git## Packages will be installed:
- pytest
- pytest-cov
- tox
- mkdocs-material
- mkdocstrings
- pre-commit
- black
- isort
- mypy
- flake8
- pytest-asyncioAlso, there is a lite version `git checkout lite`, without *tox, mkdocs, pre-commit and ci*.
## How to use
```shell
git clone https://github.com/dmitriiweb/template-project-python my-project
cd my-project
python update.py
make test
```