-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 923 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
[project]
name = "coc-story-generator"
version = "0.1.0"
description = "Multi-agent Cthulhu-themed novel generation tool"
requires-python = ">=3.11,<3.14"
dependencies = [
"crewai[anthropic,litellm]>=1.10.0",
"streamlit>=1.30.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"reportlab>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
]
[tool.black]
line-length = 100
target-version = ['py311']
[tool.ruff]
line-length = 100
[tool.mypy]
python_version = "3.11"
strict = true
[tool.uv]
required-environments = [
"sys_platform == 'darwin' and platform_machine == 'arm64'",
"sys_platform == 'linux' and platform_machine == 'x86_64'",
"sys_platform == 'linux' and platform_machine == 'aarch64'",
"sys_platform == 'win32' and platform_machine == 'AMD64'",
]