meyelens-headless 0.2.2__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,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: meyelens-headless
3
+ Version: 0.2.2
4
+ Summary: Headless MEYElens package without the PyQt offline GUI
5
+ Author-email: Raffaele Mazziotti <mzzrff@gmail.com>, Giacomo Vecchieschi <giacomovecchieschi@gmail.com>
6
+ Project-URL: Homepage, https://github.com/raffaelemazziotti/MEYElens
7
+ Project-URL: Repository, https://github.com/raffaelemazziotti/MEYElens
8
+ Project-URL: Documentation, https://raffaelemazziotti.github.io/MEYElens
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: joblib==1.4.2
12
+ Requires-Dist: matplotlib==3.10.0
13
+ Requires-Dist: numpy==2.2.6
14
+ Requires-Dist: opencv-python==4.12.0.88
15
+ Requires-Dist: pandas==2.3.3
16
+ Requires-Dist: scikit-learn==1.6.1
17
+ Requires-Dist: scikit-image==0.25.2
18
+ Requires-Dist: toml==0.10.2
19
+ Provides-Extra: tf
20
+ Requires-Dist: tensorflow==2.20.0; extra == "tf"
21
+ Provides-Extra: no-tf
22
+ Provides-Extra: docs
23
+ Requires-Dist: sphinx>=7; extra == "docs"
24
+ Requires-Dist: sphinx-rtd-theme>=2; extra == "docs"
25
+ Requires-Dist: myst-parser>=2; extra == "docs"
26
+ Requires-Dist: sphinx-autobuild>=2024.0.0; extra == "docs"
27
+ Requires-Dist: sphinx-copybutton>=0.5.2; extra == "docs"
28
+
29
+ # MEYElens Headless
30
+
31
+ This is the headless PyPI distribution for MEYElens. It installs the core
32
+ `meyelens` Python package without the PyQt offline GUI.
33
+
34
+ ## Install
35
+
36
+ ```bash
37
+ pip install meyelens-headless
38
+ ```
39
+
40
+ With TensorFlow:
41
+
42
+ ```bash
43
+ pip install "meyelens-headless[tf]"
44
+ ```
45
+
46
+ ## Notes
47
+
48
+ - Version: `0.2.2`
49
+ - Import path remains `meyelens`
50
+ - The offline GUI module and `PyQt6` dependency are intentionally omitted
51
+ - Do not install `meyelens` and `meyelens-headless` into the same environment
52
+ - Install the `meyelens` package instead if you need the GUI
@@ -0,0 +1,24 @@
1
+ # MEYElens Headless
2
+
3
+ This is the headless PyPI distribution for MEYElens. It installs the core
4
+ `meyelens` Python package without the PyQt offline GUI.
5
+
6
+ ## Install
7
+
8
+ ```bash
9
+ pip install meyelens-headless
10
+ ```
11
+
12
+ With TensorFlow:
13
+
14
+ ```bash
15
+ pip install "meyelens-headless[tf]"
16
+ ```
17
+
18
+ ## Notes
19
+
20
+ - Version: `0.2.2`
21
+ - Import path remains `meyelens`
22
+ - The offline GUI module and `PyQt6` dependency are intentionally omitted
23
+ - Do not install `meyelens` and `meyelens-headless` into the same environment
24
+ - Install the `meyelens` package instead if you need the GUI
@@ -0,0 +1,11 @@
1
+ # meyelens/__init__.py
2
+ from importlib.metadata import version, PackageNotFoundError
3
+
4
+ for _dist_name in ("meyelens", "meyelens-headless"):
5
+ try:
6
+ __version__ = version(_dist_name)
7
+ break
8
+ except PackageNotFoundError:
9
+ continue
10
+ else:
11
+ __version__ = "0.0.0"
@@ -0,0 +1,10 @@
1
+ def main() -> int:
2
+ print(
3
+ "MEYElens headless is installed. The PyQt GUI is not included in this "
4
+ "distribution. Install the 'meyelens' package if you need the offline GUI."
5
+ )
6
+ return 0
7
+
8
+
9
+ if __name__ == "__main__":
10
+ raise SystemExit(main())