-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (74 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
87 lines (74 loc) · 1.7 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wiki2video"
version = "0.0.1a1"
description = "Wiki2Video: turn Wikipedia articles into short documentary-style videos"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "NP_123", email = "np123greatest@gmail.com" }
]
keywords = [
"ai",
"video",
"llm",
"wikipedia",
"cli",
"generative-ai"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"backoff>=2.2,<3",
"dacite>=1.9,<2",
"fish-audio-sdk>=1.1,<2",
"gradio>=6.0,<7",
"Jinja2>=3.1,<4",
"moviepy>=2.2,<3",
"mwclient>=0.11,<1",
"mwparserfromhell>=0.7,<1",
"numpy>=1.26,<3",
"opencv-python>=4.12,<5",
"pandas>=2.3,<3",
"pillow>=10,<12",
"pydub>=0.25,<1",
"PyYAML>=6.0,<7",
"requests>=2.31,<3",
"rich>=13,<15",
"typer>=0.9,<1"
]
[project.optional-dependencies]
openai = [
"openai>=1.0,<2",
]
google = [
"google-genai>=0.5,<1",
]
svg = [
"CairoSVG>=2.8,<3",
]
[project.scripts]
wiki2video = "wiki2video.cli.main:app"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
include = ["wiki2video*"]
[tool.setuptools.package-data]
wiki2video = [
"llm_engine/prompts/**",
"db/schema/*.sql",
"assets/doctor/**",
"assets/placeholder/**"
]