check-orbit 0.1.0__cp311-cp311-win_amd64.whl

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,5 @@
1
+ # Import all functions from the compiled extension module
2
+ # The .pyd/.so file is named with platform tags but Python finds it automatically
3
+ from check_orbit.check_orbit import *
4
+
5
+ __version__ = "0.1.0"
@@ -0,0 +1,72 @@
1
+ Metadata-Version: 2.2
2
+ Name: check-orbit
3
+ Version: 0.1.0
4
+ Summary: Pybind11 check_orbit extension built with CMake
5
+ Author-Email: Your Name <your.email@example.com>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2024 check-orbit contributors
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Classifier: Development Status :: 3 - Alpha
29
+ Classifier: Intended Audience :: Developers
30
+ Classifier: Programming Language :: Python :: 3
31
+ Classifier: Programming Language :: Python :: 3.8
32
+ Classifier: Programming Language :: Python :: 3.9
33
+ Classifier: Programming Language :: Python :: 3.10
34
+ Classifier: Programming Language :: Python :: 3.11
35
+ Classifier: Programming Language :: Python :: 3.12
36
+ Classifier: Programming Language :: C++
37
+ Requires-Python: >=3.8
38
+ Description-Content-Type: text/markdown
39
+
40
+ # check_orbit (pybind11 C++ extension)
41
+
42
+ This folder contains the C++/CMake-based pybind11 extension `check_orbit` used by the project.
43
+
44
+ Quick install (build and install into the active Python environment)
45
+
46
+ Prerequisites
47
+ - Python development headers and a C/C++ toolchain:
48
+ - macOS: Xcode command line tools (clang)
49
+ - Windows: MSVC Build Tools (matching the Python ABI)
50
+ - CMake
51
+
52
+ Install build dependencies and build:
53
+
54
+ ```bash
55
+ python -m pip install --upgrade pip setuptools wheel scikit-build pybind11 cmake
56
+ cd core/cpp
57
+ python -m pip install .
58
+ ```
59
+
60
+ This uses `scikit-build` to call CMake (the existing `CMakeLists.txt` in this folder).
61
+
62
+ Create a wheel (artifact) for distribution:
63
+
64
+ ```bash
65
+ cd core/cpp
66
+ python -m pip wheel . -w ../dist
67
+ ```
68
+
69
+ Notes
70
+ - Wheels are platform / Python-ABI specific. A wheel built on Windows will not work on macOS (and vice versa).
71
+ - If `pip` cannot find a compatible wheel on the target machine, it will attempt to build from source. The target machine must have the required build tools installed.
72
+ - For CI-built wheels, consider using `cibuildwheel` to produce many-platform wheels and publish to PyPI or GitHub Releases.
@@ -0,0 +1,6 @@
1
+ check_orbit/__init__.py,sha256=4ryaPdZt-vBmJ-zkTkNrWL07mS0ynrNMmyfsXgHMl58,206
2
+ check_orbit/check_orbit.cp311-win_amd64.pyd,sha256=Nybov7awg6KcPH5TUj2UyO7TbWnszZwsaLbL-4AYnfk,1206272
3
+ check_orbit-0.1.0.dist-info/METADATA,sha256=YgW7SgbSjDnVlduJ3u8TlAJilJeSjSECZfTEwyMneOs,3085
4
+ check_orbit-0.1.0.dist-info/WHEEL,sha256=oXhHG6ewLm-FNdEna2zwgy-K0KEl4claZ1ztR4VTx0I,106
5
+ check_orbit-0.1.0.dist-info/licenses/LICENSE,sha256=5OizsvrzZ230uqGrSR3NA63c7uUbKAVGPsGwP597ZZ0,1102
6
+ check_orbit-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: scikit-build-core 0.11.6
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-cp311-win_amd64
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 check-orbit contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.