pyaaware 0.5.15__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,37 @@
1
+ # Build files
2
+ *.o
3
+ *.d
4
+ *.so
5
+ scratch/
6
+ test/data/algorithm/*.log
7
+ test/data/algorithm/config_out.h5
8
+ test/data/algorithm/capture.h5
9
+ test/data/h5/h5-*.h5
10
+ *.token
11
+ __pycache__/
12
+ *.py[oc]
13
+ build/
14
+ dist/
15
+ wheels/
16
+ *.egg-info
17
+ pytest.log
18
+
19
+ # Virtual environments
20
+ .venv
21
+
22
+ # Editors
23
+ *.*~
24
+ *~
25
+ *.asv
26
+ .idea/
27
+ .vscode/
28
+
29
+ # OS generated files #
30
+ ######################
31
+ .DS_Store
32
+ .DS_Store?
33
+ ._*
34
+ .Spotlight-V100
35
+ .Trashes
36
+ ehthumbs.db
37
+ Thumbs.db
@@ -0,0 +1,19 @@
1
+ aaware (c) 2020 Jason Calderwood jason@aaware.com
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.3
2
+ Name: pyaaware
3
+ Version: 0.5.15
4
+ Summary: Aaware Python development libraries
5
+ Author-email: Jason Calderwood <jason@aaware.com>
6
+ Maintainer-email: Jason Calderwood <jason@aaware.com>
7
+ License-Expression: GPL-3.0-only
8
+ License-File: LICENSE
9
+ Requires-Python: <3.12,>=3.11
10
+ Requires-Dist: torch<2.3,>=2.2
11
+ Description-Content-Type: text/markdown
12
+
13
+ the Aaware development library.
14
+
15
+ ## Cross Compile armhf
16
+
17
+ ```sh
18
+ ./build.sh -aarmhf
19
+ ```
20
+
21
+ ## Cross Compile arm64
22
+
23
+ ```sh
24
+ ./build.sh -aarm64
25
+ ```
26
+
27
+ ## Compile x86_64 (macos)
28
+
29
+ ```sh
30
+ ./build.sh -aosx-x86_64
31
+ ```
32
+
33
+ ## Compile x86_64 (linux)
34
+
35
+ ```sh
36
+ ./build.sh -ax86_64
37
+ ```
38
+
39
+ ## Compile All Targets
40
+
41
+ ```sh
42
+ ./build_all.sh
43
+ ```
@@ -0,0 +1,31 @@
1
+ the Aaware development library.
2
+
3
+ ## Cross Compile armhf
4
+
5
+ ```sh
6
+ ./build.sh -aarmhf
7
+ ```
8
+
9
+ ## Cross Compile arm64
10
+
11
+ ```sh
12
+ ./build.sh -aarm64
13
+ ```
14
+
15
+ ## Compile x86_64 (macos)
16
+
17
+ ```sh
18
+ ./build.sh -aosx-x86_64
19
+ ```
20
+
21
+ ## Compile x86_64 (linux)
22
+
23
+ ```sh
24
+ ./build.sh -ax86_64
25
+ ```
26
+
27
+ ## Compile All Targets
28
+
29
+ ```sh
30
+ ./build_all.sh
31
+ ```
@@ -0,0 +1,42 @@
1
+ [project]
2
+ name = "pyaaware"
3
+ version = "0.5.15"
4
+ description = "Aaware Python development libraries"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11,<3.12"
7
+ license = "GPL-3.0-only"
8
+ authors = [
9
+ { name = "Jason Calderwood", email = "jason@aaware.com" },
10
+ ]
11
+ maintainers = [
12
+ { name = "Jason Calderwood", email = "jason@aaware.com" },
13
+ ]
14
+ dependencies = [
15
+ "torch>=2.2,<2.3",
16
+ ]
17
+
18
+ [tool.uv]
19
+ dev-dependencies = [
20
+ "bumpver>=2023.1129",
21
+ "h5py>=3.12.1",
22
+ "icecream>=2.1.3",
23
+ "mypy>=1.11.2",
24
+ "numpy>=1,<2",
25
+ "pybind11>=2.13.6",
26
+ "pytest>=8.3.3",
27
+ "ruff>=0.6.9",
28
+ "tensorflow>=2.16,<2.17",
29
+ "tf2onnx>=1.16.1",
30
+ ]
31
+
32
+ [build-system]
33
+ requires = ["hatchling"]
34
+ build-backend = "hatchling.build"
35
+
36
+ [tool.hatch.build.targets.wheel]
37
+ packages = ["pyaaware"]
38
+
39
+ [tool.hatch.build.targets.sdist]
40
+ include = [
41
+ "pyaaware/pyaaware.cpython-311-*.so",
42
+ ]