-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (66 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "finbot-ctf"
version = "0.1.0"
description = "OWASP ASI - FinBot CTF Application"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alembic>=1.17.0",
"cryptography>=46.0.2",
"fastapi>=0.119.0",
"fastmcp>=2.0.0",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"openai>=2.6.1",
"playwright>=1.49.0",
"psycopg2-binary>=2.9.11",
"pydantic-settings>=2.11.0",
"pydantic[email]>=2.12.0",
"python-dotenv>=1.1.1",
"resend>=2.0.0",
"segno>=1.6.0",
"python-multipart>=0.0.20",
"pyyaml>=6.0.3",
"redis>=7.0.0",
"sqlalchemy>=2.0.44",
"uvicorn[standard]>=0.37.0",
"gunicorn>=21.2.0",
]
[dependency-groups]
dev = [
"black>=25.9.0",
"httpx>=0.28.1",
"isort>=7.0.0",
"mypy>=1.18.2",
"psutil>=7.1.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"pytest-html>=4.1.1",
"pytest-timeout>=2.4.0",
"pytest-xdist>=3.8.0",
"gspread>=6.0.0",
"google-auth>=2.0.0",
"google-auth-oauthlib>=1.0.0",
]
[tool.black]
line-length = 100
target-version = ['py313']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "strict"
[tool.setuptools.packages.find]
where = ["."]
include = ["finbot*"]