-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (46 loc) · 1.15 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "django-utils-lib"
version = "0.1.0"
description = "A utility library for working with Django"
authors = ["Innolitics"]
readme = "README.md"
[tool.poetry.scripts]
dul-cli = "django_utils_lib.cli:app"
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.12.5"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.4"
mypy = "^1.11.2"
django-stubs = {extras = ["compatible-mypy"], version = "^5.0.4"}
pytest = "^8.3.3"
pytest-xdist = "^3.6.1"
pytest-django = "^4.9.0"
pytest-playwright = "^0.5.2"
filelock = "^3.16.0"
debugpy = "^1.8.5"
django = "*"
djangorestframework = "^3.15.2"
djangorestframework-stubs = {extras = ["compatible-mypy"], version = "^3.15.2"}
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["A", "E", "F", "I", "W"]
unfixable = ["F841"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
log_level = "INFO"
log_cli_level = "INFO"
log_cli = true
testpaths = [
"django_utils_lib/tests"
]
pythonpath = ". django_utils_lib"
django_find_project = false
auto_debug = true
auto_debug_wait_for_connect = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"