-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (73 loc) · 2.98 KB
/
pyproject.toml
File metadata and controls
90 lines (73 loc) · 2.98 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "autovid"
version = "0.1.0"
description = "Agentic, model-pluggable short-form video editing platform"
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = { text = "MIT" }
authors = [{ name = "Open-Stitch Team" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
]
dependencies = [
# ─── API ────────────────────────────────────────────
"fastapi>=0.115.0,<1.0",
"python-multipart>=0.0.20,<1.0",
"uvicorn[standard]>=0.32.0,<1.0",
"websockets>=13.0,<15.0",
# ─── Database ───────────────────────────────────────
"sqlalchemy[asyncio]>=2.0.35,<3.0",
"asyncpg>=0.30.0,<1.0",
# ─── Object Storage ────────────────────────────────
"minio>=7.2.0,<8.0",
# ─── ASR ────────────────────────────────────────────
"faster-whisper>=1.1.0,<2.0",
# ─── Data / Config ──────────────────────────────────
"pydantic>=2.9.0,<3.0",
"pydantic-settings>=2.6.0,<3.0",
"pyyaml>=6.0.2,<7.0",
# ─── HTTP Client ────────────────────────────────────
"httpx>=0.27.0,<1.0",
# ─── Agent Orchestration ────────────────────────────
"langgraph>=0.2.62,<1.0",
# ─── Container ──────────────────────────────────────
"docker>=7.1.0,<8.0",
# ─── Google APIs ────────────────────────────────────
"google-api-python-client>=2.150.0,<3.0",
"google-auth-oauthlib>=1.2.0,<2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0,<9.0",
"pytest-asyncio>=0.24.0,<1.0",
"pytest-cov>=6.0.0,<7.0",
"ruff>=0.7.0,<1.0",
"mypy>=1.13.0,<2.0",
"pre-commit>=4.0.0,<5.0",
]
[project.scripts]
autovid = "server.main:main"
autovid-relay = "relay.main:main"
[tool.hatch.build.targets.wheel]
packages = ["server", "relay"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "TCH"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]