labelimg-plus 0.1.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,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: labelimg-plus
3
+ Version: 0.1.0
4
+ Summary: Installer package for LabelImg Plus dependencies.
5
+ Author: D Keshav Rao
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: PyQt5
9
+ Requires-Dist: lxml
10
+ Requires-Dist: Pillow
11
+ Requires-Dist: PyYAML
12
+ Requires-Dist: opencv-python
13
+ Requires-Dist: ultralytics
14
+
15
+ # LabelImg Plus Installer
16
+
17
+ This package installs the required dependencies for **LabelImg Plus**.
18
+
19
+ ## Install
20
+
21
+ ```bash
22
+ pip install labelimg-plus
23
+ ```
24
+
25
+ ## What this package does
26
+
27
+ It installs these dependencies automatically:
28
+
29
+ - PyQt5
30
+ - lxml
31
+ - Pillow
32
+ - PyYAML
33
+ - opencv-python
34
+ - ultralytics
35
+
36
+ ## Next step
37
+
38
+ After installing dependencies, download the full LabelImg Plus project from GitHub and run it locally.
39
+
40
+ ## Notes
41
+
42
+ - This PyPI package is an installer/dependency package.
43
+ - The full application source is distributed separately.
@@ -0,0 +1,29 @@
1
+ # LabelImg Plus Installer
2
+
3
+ This package installs the required dependencies for **LabelImg Plus**.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install labelimg-plus
9
+ ```
10
+
11
+ ## What this package does
12
+
13
+ It installs these dependencies automatically:
14
+
15
+ - PyQt5
16
+ - lxml
17
+ - Pillow
18
+ - PyYAML
19
+ - opencv-python
20
+ - ultralytics
21
+
22
+ ## Next step
23
+
24
+ After installing dependencies, download the full LabelImg Plus project from GitHub and run it locally.
25
+
26
+ ## Notes
27
+
28
+ - This PyPI package is an installer/dependency package.
29
+ - The full application source is distributed separately.
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: labelimg-plus
3
+ Version: 0.1.0
4
+ Summary: Installer package for LabelImg Plus dependencies.
5
+ Author: D Keshav Rao
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: PyQt5
9
+ Requires-Dist: lxml
10
+ Requires-Dist: Pillow
11
+ Requires-Dist: PyYAML
12
+ Requires-Dist: opencv-python
13
+ Requires-Dist: ultralytics
14
+
15
+ # LabelImg Plus Installer
16
+
17
+ This package installs the required dependencies for **LabelImg Plus**.
18
+
19
+ ## Install
20
+
21
+ ```bash
22
+ pip install labelimg-plus
23
+ ```
24
+
25
+ ## What this package does
26
+
27
+ It installs these dependencies automatically:
28
+
29
+ - PyQt5
30
+ - lxml
31
+ - Pillow
32
+ - PyYAML
33
+ - opencv-python
34
+ - ultralytics
35
+
36
+ ## Next step
37
+
38
+ After installing dependencies, download the full LabelImg Plus project from GitHub and run it locally.
39
+
40
+ ## Notes
41
+
42
+ - This PyPI package is an installer/dependency package.
43
+ - The full application source is distributed separately.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ labelimg_plus/__init__.py
4
+ labelimg_plus.egg-info/PKG-INFO
5
+ labelimg_plus.egg-info/SOURCES.txt
6
+ labelimg_plus.egg-info/dependency_links.txt
7
+ labelimg_plus.egg-info/requires.txt
8
+ labelimg_plus.egg-info/top_level.txt
@@ -0,0 +1,6 @@
1
+ PyQt5
2
+ lxml
3
+ Pillow
4
+ PyYAML
5
+ opencv-python
6
+ ultralytics
@@ -0,0 +1 @@
1
+ labelimg_plus
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "labelimg-plus"
7
+ version = "0.1.0"
8
+ description = "Installer package for LabelImg Plus dependencies."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ authors = [
12
+ { name = "D Keshav Rao" }
13
+ ]
14
+ dependencies = [
15
+ "PyQt5",
16
+ "lxml",
17
+ "Pillow",
18
+ "PyYAML",
19
+ "opencv-python",
20
+ "ultralytics"
21
+ ]
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["."]
25
+ include = ["labelimg_plus*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+