flicker-detector 1.0.0__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,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: flicker-detector
3
+ Version: 1.0.0
4
+ Summary: Flicker / flash anomaly detector. Use extra [cpu] for the Windows x64 CPU backend; [gpu] will be added when flicker-detector-gpu is published.
5
+ Author: internal
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Programming Language :: Python :: 3 :: Only
8
+ Classifier: Environment :: Console
9
+ Classifier: Topic :: Multimedia :: Video
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ Provides-Extra: cpu
13
+ Requires-Dist: flicker-detector-cpu<2,>=1.0.0; (platform_system == "Windows" and platform_machine == "AMD64") and extra == "cpu"
14
+
15
+ # flicker-detector
16
+
17
+ Umbrella package on PyPI. Install the **CPU** backend with `[cpu]` (same command names as the future GPU wheel).
18
+
19
+ ## Install (Windows x64)
20
+
21
+ ```powershell
22
+ py -m pip install "flicker-detector[cpu]"
23
+ ```
24
+
25
+ After install, use:
26
+
27
+ - `flicker-detector` — local detection CLI
28
+ - `flicker-detector-server` — web UI + HTTP API
29
+ - `flicker-detector-client` — submit jobs to a running server
30
+
31
+ ### GPU backend (planned)
32
+
33
+ When **`flicker-detector-gpu`** is published, this package will gain a **`[gpu]`** extra (same three commands, different binaries). Until then, only `[cpu]` is available. Use **either** CPU or GPU extra, never both — script names overlap.
34
+
35
+ ### Direct backend only
36
+
37
+ ```powershell
38
+ py -m pip install flicker-detector-cpu
39
+ ```
40
+
41
+ Same commands as with `[cpu]`; skips this umbrella package.
@@ -0,0 +1,27 @@
1
+ # flicker-detector
2
+
3
+ Umbrella package on PyPI. Install the **CPU** backend with `[cpu]` (same command names as the future GPU wheel).
4
+
5
+ ## Install (Windows x64)
6
+
7
+ ```powershell
8
+ py -m pip install "flicker-detector[cpu]"
9
+ ```
10
+
11
+ After install, use:
12
+
13
+ - `flicker-detector` — local detection CLI
14
+ - `flicker-detector-server` — web UI + HTTP API
15
+ - `flicker-detector-client` — submit jobs to a running server
16
+
17
+ ### GPU backend (planned)
18
+
19
+ When **`flicker-detector-gpu`** is published, this package will gain a **`[gpu]`** extra (same three commands, different binaries). Until then, only `[cpu]` is available. Use **either** CPU or GPU extra, never both — script names overlap.
20
+
21
+ ### Direct backend only
22
+
23
+ ```powershell
24
+ py -m pip install flicker-detector-cpu
25
+ ```
26
+
27
+ Same commands as with `[cpu]`; skips this umbrella package.
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "flicker-detector"
7
+ version = "1.0.0"
8
+ description = "Flicker / flash anomaly detector. Use extra [cpu] for the Windows x64 CPU backend; [gpu] will be added when flicker-detector-gpu is published."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ authors = [{ name = "internal" }]
12
+ classifiers = [
13
+ "Programming Language :: Python :: 3",
14
+ "Programming Language :: Python :: 3 :: Only",
15
+ "Environment :: Console",
16
+ "Topic :: Multimedia :: Video",
17
+ ]
18
+ dependencies = []
19
+
20
+ # Backend wheels own console_scripts: flicker-detector, flicker-detector-server, flicker-detector-client.
21
+ # When flicker-detector-gpu exists on PyPI, add: gpu = ["flicker-detector-gpu>=...; platform_system == 'Windows' and platform_machine == 'AMD64'"]
22
+ # Do not install [cpu] and [gpu] together — script names would conflict.
23
+ [project.optional-dependencies]
24
+ cpu = [
25
+ "flicker-detector-cpu>=1.0.0,<2; platform_system == 'Windows' and platform_machine == 'AMD64'",
26
+ ]
27
+
28
+ [tool.setuptools.packages.find]
29
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,14 @@
1
+ """Umbrella distribution for flicker-detector[cpu] / flicker-detector[gpu]."""
2
+
3
+ from __future__ import annotations
4
+
5
+ __all__ = ["package_version"]
6
+
7
+
8
+ def package_version() -> str:
9
+ try:
10
+ from importlib.metadata import version
11
+
12
+ return version("flicker-detector")
13
+ except Exception: # pragma: no cover
14
+ return "0.0.0"
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: flicker-detector
3
+ Version: 1.0.0
4
+ Summary: Flicker / flash anomaly detector. Use extra [cpu] for the Windows x64 CPU backend; [gpu] will be added when flicker-detector-gpu is published.
5
+ Author: internal
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Programming Language :: Python :: 3 :: Only
8
+ Classifier: Environment :: Console
9
+ Classifier: Topic :: Multimedia :: Video
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ Provides-Extra: cpu
13
+ Requires-Dist: flicker-detector-cpu<2,>=1.0.0; (platform_system == "Windows" and platform_machine == "AMD64") and extra == "cpu"
14
+
15
+ # flicker-detector
16
+
17
+ Umbrella package on PyPI. Install the **CPU** backend with `[cpu]` (same command names as the future GPU wheel).
18
+
19
+ ## Install (Windows x64)
20
+
21
+ ```powershell
22
+ py -m pip install "flicker-detector[cpu]"
23
+ ```
24
+
25
+ After install, use:
26
+
27
+ - `flicker-detector` — local detection CLI
28
+ - `flicker-detector-server` — web UI + HTTP API
29
+ - `flicker-detector-client` — submit jobs to a running server
30
+
31
+ ### GPU backend (planned)
32
+
33
+ When **`flicker-detector-gpu`** is published, this package will gain a **`[gpu]`** extra (same three commands, different binaries). Until then, only `[cpu]` is available. Use **either** CPU or GPU extra, never both — script names overlap.
34
+
35
+ ### Direct backend only
36
+
37
+ ```powershell
38
+ py -m pip install flicker-detector-cpu
39
+ ```
40
+
41
+ Same commands as with `[cpu]`; skips this umbrella package.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/flicker_detector/__init__.py
4
+ src/flicker_detector.egg-info/PKG-INFO
5
+ src/flicker_detector.egg-info/SOURCES.txt
6
+ src/flicker_detector.egg-info/dependency_links.txt
7
+ src/flicker_detector.egg-info/requires.txt
8
+ src/flicker_detector.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+
2
+ [cpu]
3
+
4
+ [cpu:platform_system == "Windows" and platform_machine == "AMD64"]
5
+ flicker-detector-cpu<2,>=1.0.0
@@ -0,0 +1 @@
1
+ flicker_detector