-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (79 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
90 lines (79 loc) · 2.42 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
[project]
name = "videoclaw"
version = "0.1.0"
description = "The Agent OS for AI Video Generation"
readme = "README.md"
license = { text = "Modified-MIT" }
requires-python = ">=3.12"
authors = [{ name = "VideoClaw Contributors" }]
keywords = ["ai", "video", "generation", "agent", "orchestration"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"typer>=0.15.0",
"rich>=13.9.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"httpx>=0.28.0",
"pyyaml>=6.0.2",
"litellm>=1.55.0",
"aiosqlite>=0.20.0",
"zhipuai>=2.1.0",
]
[project.optional-dependencies]
server = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"websockets>=14.0",
]
local = [
"torch>=2.5.0",
"diffusers>=0.32.0",
]
all = ["videoclaw[server,local]"]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"ruff>=0.9.0",
"mypy>=1.14.0",
"videoclaw[server]",
]
[project.scripts]
claw = "videoclaw.cli:app"
[project.entry-points."videoclaw.agents"]
director = "videoclaw.agents.director:DirectorAgent"
cameraman = "videoclaw.agents.cameraman:CameramanAgent"
reviewer = "videoclaw.agents.reviewer:ReviewerAgent"
producer = "videoclaw.agents.producer:ProducerAgent"
[project.entry-points."videoclaw.adapters"]
openai = "videoclaw.models.adapters.openai_video:OpenAIVideoAdapter"
mock = "videoclaw.models.adapters.mock:MockVideoAdapter"
kling = "videoclaw.models.adapters.kling:KlingVideoAdapter"
minimax = "videoclaw.models.adapters.minimax:MiniMaxVideoAdapter"
zhipu = "videoclaw.models.adapters.zhipu:ZhipuVideoAdapter"
seedance = "videoclaw.models.adapters.seedance:SeedanceVideoAdapter"
seedance_byteplus = "videoclaw.models.adapters.seedance_byteplus:SeedanceBytePlusAdapter"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/videoclaw"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "RUF"]
ignore = ["RUF001", "RUF002", "RUF003"] # Chinese characters are intentional
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.12"
strict = true