https://github.com/petercinibulk/python-starter-project
https://github.com/petercinibulk/python-starter-project
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/petercinibulk/python-starter-project
- Owner: petercinibulk
- Created: 2021-12-23T17:14:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-22T22:16:38.000Z (over 2 years ago)
- Last Synced: 2024-10-19T14:21:37.129Z (8 months ago)
- Language: Makefile
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Project Template
### Features
- ๐ Environment Management
- ๐๏ธ Venv
- ๐ DevContainer
- ๐งช Testing
- ๐งช Pytest
- ๐ฌ Coverage
- ๐ Formating/Linting
- ๐ฆ Ruff
- ๐ค Black
- ๐ฆ Contanerization
- ๐ Docker```bash
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -e .[dev,test]
``````bash
make run
```