Changes Pipenv -> Poetry for Dependency Management and Build Process

This commit is contained in:
2023-05-12 14:21:08 -03:00
parent 892239d498
commit 035d10e66a
6 changed files with 600 additions and 271 deletions

13
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,13 @@
repos:
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
args: [--config=pyproject.toml]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
files: "\\.(py)$"
args: [--settings-path=pyproject.toml]