-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.16 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
[project]
name = "pixelle-video"
version = "0.1.15"
description = "AI-powered video creation platform - Part of Pixelle ecosystem"
authors = [
{name = "Pixelle.AI"}
]
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
dependencies = [
"fastmcp>=2.0.0",
"pydantic>=2.0.0",
"loguru>=0.7.0",
"pyyaml>=6.0.0",
"edge-tts==7.2.7",
"certifi>=2025.10.5",
"ffmpeg-python>=0.2.0",
"httpx>=0.28.1",
"pillow>=10.0.0,<12",
"streamlit>=1.40.0",
"openai>=2.6.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"python-multipart>=0.0.12",
"comfykit>=0.1.12",
"beautifulsoup4>=4.14.2",
"moviepy==1.0.3",
"playwright>=1.58.0",
"dashscope>=1.23.0",
"requests>=2.32.0",
"pyjwt>=2.10.0",
"numpy>=1.26.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]