-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 919 Bytes
/
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
40
41
[tool.poetry]
name = "notas-musicais"
version = "0.1.0"
description = ""
authors = ["Cristiano Coutinho <[email protected]>"]
readme = "README.md"
packages = [{include = "notas_musicais"}]
[tool.poetry.dependencies]
python = "^3.12"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
blue = "^0.9.1"
isort = "^5.13.2"
mkdocs-material = "^9.5.39"
mkdocstrings = "^0.26.1"
mkdocstrings-python = "^1.11.1"
taskipy = "^1.13.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--doctest-modules"
profile = "black"
[tool.isort]
line_length = 79
[tool.taskipy.tasks]
lint = "blue --check --diff . && isort --check --diff ."
docs = "mkdocs serve"
pre_test = "test lint"
test = "pytest -s -x --cov=notas_musicais -vv"
pos_test = "coverage html"
testall = "task lint & task test & task pos_test"