-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.5 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
[project]
name = "racks-thumbnail-generator"
version = "0.9.0"
description = "Automatic thumbnail generator for Racks reels (video → AI scene + composited title)"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "Racks Labs", email = "hello@rackslabs.com" }]
license = { text = "MIT" }
keywords = ["thumbnail", "instagram", "reel", "ai", "racks", "nanobanana", "gemini"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Video",
]
dependencies = [
"google-genai>=1.52.0",
"openai>=1.0",
"Pillow>=10.0",
"ffmpeg-python>=0.2",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
"typer>=0.12",
"numpy>=1.24",
"rich>=13.0",
]
[project.urls]
Homepage = "https://github.com/Racks-Labs/thumbnail_generator"
Repository = "https://github.com/Racks-Labs/thumbnail_generator"
Issues = "https://github.com/Racks-Labs/thumbnail_generator/issues"
[project.scripts]
racks-thumbnail = "racks_thumbnail_generator.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["racks_thumbnail_generator"]
[tool.hatch.build.targets.wheel.force-include]
"racks_thumbnail_generator/assets" = "racks_thumbnail_generator/assets"
"racks_thumbnail_generator/templates" = "racks_thumbnail_generator/templates"