-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 730 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (32 loc) · 730 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
[project]
name = "async-notes"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.11.12",
"asyncpg>=0.30.0",
"flask>=3.1.0",
"gunicorn>=23.0.0",
"psycopg2-binary>=2.9.10",
"requests>=2.32.3",
"starlette>=0.46.0",
"uvicorn>=0.34.0",
]
[dependency-groups]
dev = [
"mypy>=1.15.0",
"ruff>=0.9.7",
"types-requests>=2.32.0.20241016",
]
[tool.mypy]
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
warn_return_any = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
no_implicit_optional = true