-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.31 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
[project]
name = "reelsmith"
version = "1.0.0"
description = "AI-powered video editor — turns photos and videos into polished highlight reels"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [{name = "Yuer Guo"}]
readme = "README.md"
dependencies = [
"pydantic>=2.0",
"click>=8.0",
"Pillow>=10.0",
"python-dotenv>=1.0",
"google-genai>=1.0",
"pillow-heif>=0.18",
"reverse_geocode>=1.0",
"rich>=13.0",
"pyyaml>=6.0",
]
[tool.setuptools.packages.find]
include = ["pipeline*"]
[project.optional-dependencies]
test = ["pytest>=8.0", "python-dotenv>=1.0"]
dev = ["ruff>=0.8", "pyright>=1.1", "pre-commit>=4.0", "pytest>=8.0", "python-dotenv>=1.0"]
[project.urls]
Repository = "https://github.com/Guoyuer/reelsmith"
[project.scripts]
reelsmith = "pipeline.cli:cli"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E402"]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"
reportOptionalMemberAccess = "error"
reportMissingTypeStubs = false
exclude = ["tests/", ".venv/", "venv/"]
[tool.pytest.ini_options]
addopts = "-m 'not integration'"
markers = [
"integration: tests requiring FFmpeg and real media rendering (excluded by default, run with -m integration)",
]