-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 860 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
[tool.poetry]
name = "dj-minimal"
package-mode = false
version = "0.1.0"
description = "A minimal async django"
authors = ["Jair Henrique <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
Django = "^5"
gunicorn = "^23.0.0"
uvicorn = "^0.34.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.14.0"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
pytest-asyncio = "^0.25.0"
pytest-django = "^4.9.0"
ruff = "^0"
[tool.coverage.run]
omit = ["conftest.py", "tests/**"]
branch = true
[tool.pytest.ini_options]
pythonpath = "src"
addopts = "--cov --cov-report term-missing --cov-report xml"
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "W", "F", "C90", "UP", "N", "I", "SIM", "RUF"]
per-file-ignores = {}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"