-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (37 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
47 lines (37 loc) · 833 Bytes
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
package-mode=false
[project]
name = "python-task"
version = "0.1.0"
description = ""
authors = [
{name = "Peter Laudel",email = "peter.laudel@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard] (>=0.119.0,<0.120.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"pytest (>=8.4.2,<9.0.0)",
"mypy (>=1.18.2,<2.0.0)",
"ruff (>=0.14.0,<0.15.0)",
"pytest-asyncio (>=1.2.0,<2.0.0)",
"httpx-ws (>=0.8.0,<0.9.0)"
]
[tool.poetry]
package-mode = false
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
# Specify where the code is
files = "src,tests"
# Strictness flags
strict = true # shorthand for enabling most strict checks
[tool.pytest.ini_options]
pythonpath = [
"."
]