-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 1007 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
48
49
50
51
52
53
54
55
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.black]
line-length = 120
[tool.coverage.report]
fail_under = 0
show_missing = true
[tool.coverage.run]
branch = true
omit = [
".mypy_cache/**/*",
".pytest_cache/**/*",
"app/**/tests.py",
"manage.py"
]
source = ["app"]
[tool.isort]
profile = "black"
[tool.mypy]
disallow_subclassing_any = false
exclude = "fabfile"
ignore_missing_imports = true
implicit_reexport = true
plugins = "pydantic.mypy"
python_version = "3.11"
show_error_codes = true
strict = true
[tool.poetry]
authors = ["bhnvx <[email protected]>"]
description = ""
name = "django-ci"
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
django = "^4.2"
django-filter = "^23.5"
djangorestframework = "^3.14.0"
pydantic = "^2.6.3"
python = "^3.11"
[tool.poetry.group.dev.dependencies]
black = {extras = ["d"], version = "^24.2.0"}
coverage = "^7.4.3"
isort = "^5.13.2"
mypy = "^1.8.0"
pytest = "^8.0.2"
toml-sort = "^0.23.1"