-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.05 KB
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
[project]
name = "backchannelserver"
version = "0.3.4"
description = "BackChannel Server"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiosqlite>=0.21.0",
"fastapi>=0.118.2",
"fastapi-login>=1.10.3",
"greenlet>=3.2.4",
"jinja2>=3.1.6",
"passlib[bcrypt]>=1.7.4",
"pydantic>=2.12.0",
"pydantic-settings>=2.11.0",
"sqlalchemy>=2.0.43",
"uvicorn>=0.37.0",
"bcrypt==3.2.2",
]
[dependency-groups]
dev = [
"black>=25.9.0",
"flake8>=7.3.0",
"isort>=6.1.0",
"mypy>=1.18.2",
"pylint>=3.3.9",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"types-passlib>=1.7.7.20250602",
]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pylint]
max-line-length = 88
disable = [
"missing-class-docstring",
"missing-module-docstring",
"missing-function-docstring",
"too-few-public-methods",
"unused-argument",
]