-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (46 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
58 lines (46 loc) · 1.28 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "campaign_master"
version = "1.3.0"
authors = [
"Chris De Jesus <christopher2653@gmail.com>"
]
description = "A campaign management tool for tabletop RPGs."
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
tqdm = {version = "^4.67.1"}
PySide6 = {version = "~=6.8.1.1", optional = true}
PySide6-Essentials = {version = "~=6.8.1.1", optional = true}
PySide6-Addons = {version = "~=6.8.1.1", optional = true}
fastapi = {extras = ["all"], version = "^0.125.0"}
sqlalchemy = {extras = ["asyncio"], version = "^2.0.45"}
aiosqlite = "^0.22.0"
anthropic = "^0.42.0"
openai = "^1.59.0"
httpx = "^0.28.0"
bcrypt = "^5.0.0"
[tool.poetry.extras]
gui = ["PySide6", "PySide6-Essentials", "PySide6-Addons"]
[tool.poetry.group.formatting.dependencies]
black="^24.10.0"
isort="^5.13.2"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
typer = ">=0.15.0"
[tool.poetry.group.build.dependencies]
pyinstaller = "^6.0"
[tool.black]
line-length = 120
preview = true
[tool.isort]
profile = "black"
line_length = 120
[tool.pytest.ini_options]
testpaths = ["test"]
pythonpath = ["."]
addopts = "-v --strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]