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

https://github.com/petercinibulk/python-starter-project


https://github.com/petercinibulk/python-starter-project

Last synced: 2 months ago
JSON representation

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
```