-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 987 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 987 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 = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "docgen"
version = "0.1.0"
description = "Reusable demo generation pipeline: TTS, Manim, VHS, ffmpeg composition, validation, GitHub Pages publishing"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "jmjava"}]
dependencies = [
"click>=8.0",
"pyyaml>=6.0",
"openai>=1.0",
"flask>=3.0",
"jinja2>=3.1",
"opencv-python>=4.8",
"numpy>=1.24",
"pytesseract>=0.3.10",
]
[project.optional-dependencies]
manim = ["manim>=0.18"]
dev = [
"pytest>=7.0",
"pytest-cov",
"pytest-playwright",
"ruff",
]
[project.scripts]
docgen = "docgen.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
docgen = ["templates/*.html", "static/*.css", "static/*.js"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"