-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
37 lines (31 loc) · 1.03 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
[tool.poetry]
name = "pydantic-changedetect"
version = "0.7.3"
description = "Extend pydantic models to also detect and record changes made to the model attributes."
authors = ["TEAM23 GmbH <[email protected]>"]
license = "MIT"
repository = "https://github.com/team23/pydantic-changedetect"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = ">=1.9.0,<3.0.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.2,<9.0.0"
pytest-cov = ">=3,<6"
tox = ">=3.26,<5.0"
ruff = ">=0.5.0,<0.8.0"
pyright = ">=1.1.350,<1.2"
[tool.ruff]
line-length = 115
target-version = "py38"
output-format = "grouped"
[tool.ruff.lint]
select = ["F","E","W","C","I","N","UP","ANN","S","B","A","COM","C4","T20","PT","ARG","TD","RUF"]
ignore = ["A001","A002","A003","ANN101","ANN102","ANN401","C901","N8","B008","F405","F821"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"conftest.py" = ["S101","ANN","F401"]
"test_*.py" = ["S101","ANN","F401"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"