-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
authors = ["William Sampaio <[email protected]>"]
description = "Implementação em python do layout padrão de arrecadação/recebimento com utilização do código de barras da Febraban."
license = "MIT"
name = "febraban-barcode"
packages = [{include = "febraban_barcode"}]
readme = "README.md"
version = "0.3.0"
[tool.poetry.urls]
"Código" = "https://github.com/WilliamSampaio/febraban_barcode"
"Documentação" = "https://febraban-barcode.readthedocs.io/"
[tool.poetry.dependencies]
pillow = "^10.0.0"
python = "^3.11"
python-barcode = "^0.15.1"
[tool.poetry.group.dev.dependencies]
blue = "^0.9.1"
isort = "^5.12.0"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
taskipy = "^1.13.0"
tinydb = "^4.8.0"
[tool.poetry.group.doc.dependencies]
mkdocs-material = "^9.1.21"
mkdocstrings = "^0.22.0"
mkdocstrings-python = "^1.2.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.taskipy.tasks]
docs = "mkdocs serve"
lint = "isort . && blue ."
test = "pytest -x -v --ff --cov=febraban_barcode --cov-report=html tests/"