-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (97 loc) · 2.51 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (97 loc) · 2.51 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[project]
name = "veotools"
version = "0.2.0"
description = "A Python toolkit for AI-powered video generation and seamless stitching using Google's Veo models."
readme = "readme.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "frontboat", email = "" }
]
keywords = ["veo", "video", "generation", "stitching", "google-genai", "mcp"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"google-genai>=1.56.0",
"opencv-python>=4.8.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"numpy>=1.26.0",
"pydantic>=2.11.0",
]
[project.urls]
Homepage = "https://github.com/frontboat/veotools"
Repository = "https://github.com/frontboat/veotools"
Issues = "https://github.com/frontboat/veotools/issues"
[tool.hatch.build]
sources = ["src"]
include = [
"src/veotools/**",
"readme.md",
"requirements.txt",
"LICENSE",
"CHANGELOG.md",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
mcp = ["mcp[cli]>=1.25.0"]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.0",
"pytest-xdist>=3.3.0",
"build>=1.0.0",
"twine>=4.0.0",
]
docs = [
"mkdocs>=1.5.0",
"mkdocstrings[python]>=0.24.0",
"mkdocs-material>=9.5.0",
"mkdocs-autorefs>=0.5.0",
]
[project.scripts]
veo = "veotools.cli:main"
veo-mcp = "veotools.server.mcp_server:main"
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
pythonpath = ["src"]
addopts = [
"--strict-markers",
"--tb=short",
"--capture=no",
]
markers = [
"unit: Unit tests (fast, no external dependencies)",
"integration: Integration tests (may use external services)",
"slow: Slow running tests",
"api: Tests that make API calls",
"ffmpeg: Tests that require ffmpeg",
]
[tool.coverage.run]
source = ["src/veotools"]
omit = ["*/tests/*", "*/__init__.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]