-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (38 loc) · 956 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
42
43
44
45
46
47
[tool.poetry]
name = "brick-by-brick"
version = "0.1.0"
description = ""
authors = ["azevedo <[email protected]>"]
readme = "README.md"
packages = [{include = "brick_by_brick"}]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.26.4"
pandas = "^2.2.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
pytest-cov = "^4.1.0"
taskipy = "^1.12.2"
blue = "^0.9.1"
ruff = "^0.2.2"
isort = "^5.13.2"
[tool.ruff]
line-length = 79
exclude = ['.venv', 'migrations']
[tool.isort]
profile = "black"
line_length = 79
extend_skip = ['migrations']
[tool.pytest.ini_options]
pythonpath = "."
[tool.blue]
extend-exclude = '(migrations/)'
[tool.taskipy.tasks]
lint = 'ruff . && blue --check . --diff && isort --check . --diff'
format = 'blue . && isort .'
pre_test = 'task lint'
test = 'pytest -s -x --cov=brick_by_brick -vv'
post_test = 'coverage html'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"