-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.19 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "plotloom"
version = "0.2.1"
description = "AI short-drama production CLI with repo-first skills, image generation, video adapters, and reviewable delivery artifacts"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"click>=8.1",
"requests>=2.31",
"tomli-w>=1.0",
]
[project.optional-dependencies]
volcengine = ["volcengine-python-sdk[ark]>=5.0.0"]
youtube = [
"google-api-python-client>=2.100",
"google-auth-oauthlib>=1.1",
"google-auth-httplib2>=0.2",
]
dev = ["pytest>=8", "ruff>=0.5"]
[project.scripts]
plotloom = "plotloom.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["plotloom*"]
[tool.setuptools.package-data]
plotloom = [
"templates/series-repo/assets/cast/.gitkeep",
"templates/series-repo/assets/scenes/.gitkeep",
"templates/series-repo/characters.md",
"templates/series-repo/episodes/ep001/images/covers/candidates/.gitkeep",
"templates/series-repo/episodes/ep001/videos/.gitkeep",
"templates/series-repo/outputs/.gitkeep",
"templates/series-repo/plotloom.toml",
"templates/series-repo/series.md",
]