Skip to content

Commit 0431be7

Browse files
committed
v0.1.5
1 parent 7761642 commit 0431be7

File tree

19 files changed

+16
-16
lines changed

19 files changed

+16
-16
lines changed

examples/all_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
sys.path.insert(0, str(Path(__file__).parent.parent))
1414

15-
import veo_tools as veo
15+
import veotools as veo
1616

1717

1818
def demo_generate_from_text():

examples/chained_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
sys.path.insert(0, str(Path(__file__).parent.parent))
77

8-
import veo_tools as veo
8+
import veotools as veo
99

1010
def example_1_simple_chain():
1111
print("Example 1: Simple Chain")

examples/text_to_video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
sys.path.insert(0, str(Path(__file__).parent.parent))
77

8-
import veo_tools as veo
8+
import veotools as veo
99

1010
def generate_single_video(prompt: str, model: str | None = None):
1111
veo.init()

examples/video_to_video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
sys.path.insert(0, str(Path(__file__).parent.parent))
1313

14-
import veo_tools as veo
14+
import veotools as veo
1515

1616

1717
def continue_my_video(video_path: str, continuation_prompt: str, model: str | None = None):

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "veotools"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "A Python toolkit for AI-powered video generation and seamless stitching using Google's Veo models."
99
readme = "readme.md"
1010
requires-python = ">=3.10"
@@ -40,7 +40,7 @@ Issues = "https://github.com/frontboat/veotools/issues"
4040

4141
[tool.hatch.build]
4242
include = [
43-
"veo_tools/**",
43+
"veotools/**",
4444
"readme.md",
4545
"requirements.txt",
4646
"LICENSE",

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ veo.preflight()
115115
# -> { ok: bool, gemini_api_key: bool, ffmpeg: {installed, version}, write_permissions: bool, base_path: str }
116116

117117
veo.version()
118-
# -> { veo_tools: str | None, dependencies: {...}, ffmpeg: str | None }
118+
# -> { veotools: str | None, dependencies: {...}, ffmpeg: str | None }
119119
```
120120

121121
### Non-blocking generation jobs

scripts/check_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Checks:
55
- Git tag (without leading 'v') equals [project].version in pyproject.toml
6-
- veo_tools/__init__.py __version__ equals pyproject version
6+
- veotools/__init__.py __version__ equals pyproject version
77
88
Usage: run in CI prior to building/publishing releases.
99
"""
@@ -36,7 +36,7 @@ def read_init_version(init_path: Path) -> str:
3636
text = init_path.read_text(encoding="utf-8")
3737
m = re.search(r'__version__\s*=\s*"([^"]+)"', text)
3838
if not m:
39-
raise RuntimeError("__version__ not found in veo_tools/__init__.py")
39+
raise RuntimeError("__version__ not found in veotools/__init__.py")
4040
return m.group(1)
4141

4242

@@ -48,7 +48,7 @@ def main() -> None:
4848

4949
repo_root = Path(__file__).resolve().parents[1]
5050
py_version = read_pyproject_version(repo_root / "pyproject.toml")
51-
init_version = read_init_version(repo_root / "veo_tools" / "__init__.py")
51+
init_version = read_init_version(repo_root / "veotools" / "__init__.py")
5252

5353
errors = []
5454
if tag_version and py_version != tag_version:

veo_tools_mcp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
from typing import Optional, List, Dict
66
import time
77
from mcp.server.fastmcp import FastMCP, Context
8-
import veo_tools as veo
9-
from veo_tools.mcp_api import JobStore
10-
from veo_tools.process.extractor import get_video_info
8+
import veotools as veo
9+
from veotools.mcp_api import JobStore
10+
from veotools.process.extractor import get_video_info
1111

1212
app = FastMCP("veo-tools")
1313

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
generate_cancel,
3636
)
3737

38-
__version__ = "0.1.4"
38+
__version__ = "0.1.5"
3939

4040
__all__ = [
4141
"VeoClient",
File renamed without changes.

0 commit comments

Comments
 (0)