Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 669 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 669 Bytes

Tools to setup great Python projects (PyCon PT talk)

Requirements

Installing

Run the following to configure poetry and pyenv:

pyenv install 3.11.4
poetry config virtualenvs.in-project true
poetry env use ~/.pyenv/versions/3.11.4/bin/python
make install

Running the application

make run

Quality checks

make format
make lint
make test
# or just...
make all
--

Based on [my-python-template](https://github.com/duarte-pompeu/my-python-template), created by [Duarte Pompeu](https://duartepompeu.com).