-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 960 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 960 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
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yoak"
version = "0.1.0"
description = "Lean Startup Cofounder Agent — AI harness encoding Paul Graham, Steve Blank, and Steve Jobs philosophies"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"websockets>=14.0",
"litellm>=1.55",
"aiosqlite>=0.20",
"pydantic>=2.10",
"pydantic-settings>=2.7",
"typer[all]>=0.15",
"rich>=13.9",
"jinja2>=3.1",
"pyyaml>=6.0",
"httpx>=0.28",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
]
[project.scripts]
yoak = "yoak.cli.main:app"
[tool.hatch.build.targets.wheel]
packages = ["yoak"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"