-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 866 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
[tool.poetry]
authors = ["Mauro Insacco <[email protected]>"]
description = "A library for defining and resolving a DAG of features in python"
name = "trippa"
version = "0.0.1"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
black = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-asyncio = "*"
ruff = "*"
pdoc = "^13.1.0"
[tool.black]
line-length = 88
[tool.ruff]
# Never enforce `E501` (line length violations).
ignore = ["E501"]
[tool.isort]
profile = "black"
[tool.mypy]
disallow_untyped_defs = true
implicit_reexport = true
pretty = true
show_error_codes = true
show_error_context = true
strict = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_ignores = true
disable_error_code = 'type-arg, empty-body'
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]