types-tde4 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,24 @@
1
+ BSD 2-Clause License
2
+
3
+ Copyright (c) 2026, uwe-at-sdv
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
19
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: types-tde4
3
+ Version: 0.1.0
4
+ Summary: Type stubs for the 3DEqualizer4 Python module tde4.
5
+ Author: Science-D-Visions
6
+ License-Expression: BSD-2-Clause
7
+ Project-URL: Repository, https://github.com/uwe-at-sdv/types-tde4
8
+ Keywords: 3dequalizer,3de4,tde4,typing,stubs
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Typing :: Stubs Only
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Dynamic: license-file
17
+
18
+ # types-tde4
19
+
20
+ `types-tde4` provides type stubs for the `tde4` Python extension module shipped with 3DEqualizer4.
21
+
22
+ The package is intended for type checkers and editor tooling. It does not provide a runtime implementation of `tde4`; scripts still have to run inside 3DEqualizer4, or in an environment where 3DEqualizer4 provides the extension module.
23
+
24
+ ## Installation
25
+
26
+ Install directly from the repository:
27
+
28
+ ```bash
29
+ python -m pip install git+ssh://git@github.com/uwe-at-sdv/types-tde4.git
30
+ ```
31
+
32
+ For local development, install the checkout in editable mode:
33
+
34
+ ```bash
35
+ python -m pip install -e .
36
+ ```
37
+
38
+ ## Usage
39
+
40
+ After installation, type checkers should find the stubs automatically when code imports `tde4`:
41
+
42
+ ```python
43
+ import tde4
44
+
45
+ camera = tde4.getCurrentCamera()
46
+ ```
47
+
48
+ The installed package is a PEP 561 stub-only package. Its importable target is `tde4`, while the installed stub package directory is `tde4-stubs`.
49
+
50
+ ## Source
51
+
52
+ The authoritative source for these stubs is `tde4_stubs.py` in the documentation workspace. The published `src/tde4-stubs/__init__.pyi` file is generated or copied from that source.
53
+
54
+ ## License
55
+
56
+ BSD-2-Clause.
@@ -0,0 +1,39 @@
1
+ # types-tde4
2
+
3
+ `types-tde4` provides type stubs for the `tde4` Python extension module shipped with 3DEqualizer4.
4
+
5
+ The package is intended for type checkers and editor tooling. It does not provide a runtime implementation of `tde4`; scripts still have to run inside 3DEqualizer4, or in an environment where 3DEqualizer4 provides the extension module.
6
+
7
+ ## Installation
8
+
9
+ Install directly from the repository:
10
+
11
+ ```bash
12
+ python -m pip install git+ssh://git@github.com/uwe-at-sdv/types-tde4.git
13
+ ```
14
+
15
+ For local development, install the checkout in editable mode:
16
+
17
+ ```bash
18
+ python -m pip install -e .
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ After installation, type checkers should find the stubs automatically when code imports `tde4`:
24
+
25
+ ```python
26
+ import tde4
27
+
28
+ camera = tde4.getCurrentCamera()
29
+ ```
30
+
31
+ The installed package is a PEP 561 stub-only package. Its importable target is `tde4`, while the installed stub package directory is `tde4-stubs`.
32
+
33
+ ## Source
34
+
35
+ The authoritative source for these stubs is `tde4_stubs.py` in the documentation workspace. The published `src/tde4-stubs/__init__.pyi` file is generated or copied from that source.
36
+
37
+ ## License
38
+
39
+ BSD-2-Clause.
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "types-tde4"
7
+ version = "0.1.0"
8
+ description = "Type stubs for the 3DEqualizer4 Python module tde4."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "BSD-2-Clause"
12
+ authors = [
13
+ { name = "Science-D-Visions" }
14
+ ]
15
+ keywords = ["3dequalizer", "3de4", "tde4", "typing", "stubs"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "Programming Language :: Python :: 3",
20
+ "Typing :: Stubs Only"
21
+ ]
22
+
23
+ [project.urls]
24
+ Repository = "https://github.com/uwe-at-sdv/types-tde4"
25
+
26
+ [tool.setuptools]
27
+ packages = ["tde4-stubs"]
28
+ package-dir = {"" = "src"}
29
+ include-package-data = true
30
+
31
+ [tool.setuptools.package-data]
32
+ "*" = ["*.pyi"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+