From e3405fd433373f834acce0d9de858fd838b55e06 Mon Sep 17 00:00:00 2001 From: Arseniy Terekhin Date: Tue, 21 Jan 2025 18:08:50 +0300 Subject: [PATCH] release: 0.0.3 store version in __init__.py --- pyproject.toml | 4 +++- python/videoreader/__init__.py | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0c93908..25f6820 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,11 @@ [project] name = "videoreader" -version = "0.0.2" +dynamic = ["version"] authors = [ { name="Arseniy Terekhin", email="senyai@gmail.com" }, ] +license = {text = "MIT"} +readme = "README.md" description = "Video capture library" requires-python = ">=3.10" classifiers = [ diff --git a/python/videoreader/__init__.py b/python/videoreader/__init__.py index a162623..3b7c0c3 100755 --- a/python/videoreader/__init__.py +++ b/python/videoreader/__init__.py @@ -4,6 +4,8 @@ from ._videoreader import ffi from pathlib import Path +__version__ = "0.0.3" + path = str(Path(__file__).parent / "libvideoreader_c.so") try: