ffmpeg-data-v8 1.0.0a2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: ffmpeg-data-v8
3
+ Version: 1.0.0a2
4
+ Summary: Cache data files for typed-ffmpeg-v8 (FFmpeg 8.x)
5
+ Author-email: lucemia <lucemia@gmail.com>
6
+ License-Expression: MIT
7
+ Keywords: ffmpeg,data
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: Natural Language :: English
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Multimedia :: Video
13
+ Requires-Python: >=3.10
@@ -0,0 +1,33 @@
1
+ [project]
2
+ name = "ffmpeg-data-v8"
3
+ version = "1.0.0a2"
4
+ description = "Cache data files for typed-ffmpeg-v8 (FFmpeg 8.x)"
5
+ authors = [
6
+ {name = "lucemia", email = "lucemia@gmail.com"}
7
+ ]
8
+ requires-python = ">=3.10"
9
+ license = "MIT"
10
+ keywords = ["ffmpeg", "data"]
11
+ classifiers = [
12
+ "Intended Audience :: Developers",
13
+ "Natural Language :: English",
14
+ "Operating System :: OS Independent",
15
+ "Programming Language :: Python :: 3",
16
+ "Topic :: Multimedia :: Video",
17
+ ]
18
+
19
+ dependencies = []
20
+
21
+ [build-system]
22
+ requires = ["setuptools>=61.0"]
23
+ build-backend = "setuptools.build_meta"
24
+
25
+ [tool.setuptools]
26
+ package-dir = {"" = "src"}
27
+
28
+ [tool.setuptools.packages.find]
29
+ where = ["src"]
30
+ include = ["ffmpeg_data_v8*"]
31
+
32
+ [tool.setuptools.package-data]
33
+ "ffmpeg_data_v8" = ["cache/list/*.json"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,14 @@
1
+ """Cache data files for typed-ffmpeg-v8 (FFmpeg 8.x)."""
2
+
3
+ from pathlib import Path
4
+
5
+
6
+ def get_cache_path() -> Path:
7
+ """
8
+ Return the path to the cache data directory.
9
+
10
+ Returns:
11
+ Path to the cache data directory.
12
+
13
+ """
14
+ return Path(__file__).parent / "cache"