ir-support-full 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,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: ir-support-full
3
+ Version: 0.1.0
4
+ Summary: Meta-package that installs ir-support and the optional robot and parts model packs.
5
+ Author: 41013 Teaching Team
6
+ Author-email: 41013@uts.edu.au
7
+ Requires-Python: >=3.10,<3.11
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Requires-Dist: ir-support (>=1.3.0,<2.0.0)
11
+ Requires-Dist: ir-support-extra-parts (>=0.1.0,<0.2.0)
12
+ Requires-Dist: ir-support-extra-robots (>=0.1.0,<0.2.0)
13
+ Description-Content-Type: text/markdown
14
+
15
+ # ir-support-full
16
+
17
+ `ir-support-full` is a small meta-package for 41013 Industrial Robotics at UTS. It installs the core `ir-support` package plus the optional robot and parts model packs:
18
+
19
+ - `ir-support`
20
+ - `ir-support-extra-robots`
21
+ - `ir-support-extra-parts`
22
+
23
+ Use this when you want the complete local model library rather than only the lab-required core package.
24
+
25
+ ```powershell
26
+ python -m pip install ir-support-full
27
+ ```
28
+
29
+ The installed importable packages remain `ir_support`, `ir_support_extra_robots`, and `ir_support_extra_parts`.
30
+
@@ -0,0 +1,15 @@
1
+ # ir-support-full
2
+
3
+ `ir-support-full` is a small meta-package for 41013 Industrial Robotics at UTS. It installs the core `ir-support` package plus the optional robot and parts model packs:
4
+
5
+ - `ir-support`
6
+ - `ir-support-extra-robots`
7
+ - `ir-support-extra-parts`
8
+
9
+ Use this when you want the complete local model library rather than only the lab-required core package.
10
+
11
+ ```powershell
12
+ python -m pip install ir-support-full
13
+ ```
14
+
15
+ The installed importable packages remain `ir_support`, `ir_support_extra_robots`, and `ir_support_extra_parts`.
@@ -0,0 +1,3 @@
1
+ """Meta-package marker for installing the complete IR Support model set."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,17 @@
1
+ [tool.poetry]
2
+ name = "ir-support-full"
3
+ version = "0.1.0"
4
+ description = "Meta-package that installs ir-support and the optional robot and parts model packs."
5
+ authors = ["41013 Teaching Team <41013@uts.edu.au>"]
6
+ readme = "README.md"
7
+ packages = [{include = "ir_support_full"}]
8
+
9
+ [tool.poetry.dependencies]
10
+ python = ">=3.10,<3.11"
11
+ ir-support = ">=1.3.0,<2.0.0"
12
+ ir-support-extra-robots = ">=0.1.0,<0.2.0"
13
+ ir-support-extra-parts = ">=0.1.0,<0.2.0"
14
+
15
+ [build-system]
16
+ requires = ["poetry-core"]
17
+ build-backend = "poetry.core.masonry.api"