holoscript 6.0.6__tar.gz → 6.0.7__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.
- {holoscript-6.0.6 → holoscript-6.0.7}/PKG-INFO +3 -1
- {holoscript-6.0.6 → holoscript-6.0.7}/README.md +2 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/__init__.py +1 -1
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript.egg-info/PKG-INFO +3 -1
- {holoscript-6.0.6 → holoscript-6.0.7}/pyproject.toml +1 -1
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/bridges/__init__.py +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/bridges/alphafold.py +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/bridges/medical.py +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/bridges/narupa.py +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/bridges/radio_astronomy.py +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/bridges/robotics.py +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript/bridges/scientific.py +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript.egg-info/SOURCES.txt +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript.egg-info/dependency_links.txt +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript.egg-info/requires.txt +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/holoscript.egg-info/top_level.txt +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/setup.cfg +0 -0
- {holoscript-6.0.6 → holoscript-6.0.7}/tests/test_smoke.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: holoscript
|
|
3
|
-
Version: 6.0.
|
|
3
|
+
Version: 6.0.7
|
|
4
4
|
Summary: Python bindings for HoloScript — parsing, validation, and domain bridges for scientific computing
|
|
5
5
|
Author: Brian X Base Team
|
|
6
6
|
License: MIT
|
|
@@ -37,6 +37,8 @@ Requires-Dist: holoscript[alphafold,astronomy,medical,robotics,scientific]; extr
|
|
|
37
37
|
|
|
38
38
|
Python bindings for [HoloScript](https://github.com/brianonbased-dev/HoloScript) — parse, validate, and bridge domain-specific scientific tools into the HoloScript spatial computing ecosystem.
|
|
39
39
|
|
|
40
|
+
The README you see on [pypi.org/project/holoscript](https://pypi.org/project/holoscript/) comes from this file in the published wheel and sdist. Bump the package version (e.g. 6.0.7) when refreshing PyPI-facing docs so the project page picks up changes after the next release.
|
|
41
|
+
|
|
40
42
|
## Install
|
|
41
43
|
|
|
42
44
|
```bash
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Python bindings for [HoloScript](https://github.com/brianonbased-dev/HoloScript) — parse, validate, and bridge domain-specific scientific tools into the HoloScript spatial computing ecosystem.
|
|
4
4
|
|
|
5
|
+
The README you see on [pypi.org/project/holoscript](https://pypi.org/project/holoscript/) comes from this file in the published wheel and sdist. Bump the package version (e.g. 6.0.7) when refreshing PyPI-facing docs so the project page picks up changes after the next release.
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: holoscript
|
|
3
|
-
Version: 6.0.
|
|
3
|
+
Version: 6.0.7
|
|
4
4
|
Summary: Python bindings for HoloScript — parsing, validation, and domain bridges for scientific computing
|
|
5
5
|
Author: Brian X Base Team
|
|
6
6
|
License: MIT
|
|
@@ -37,6 +37,8 @@ Requires-Dist: holoscript[alphafold,astronomy,medical,robotics,scientific]; extr
|
|
|
37
37
|
|
|
38
38
|
Python bindings for [HoloScript](https://github.com/brianonbased-dev/HoloScript) — parse, validate, and bridge domain-specific scientific tools into the HoloScript spatial computing ecosystem.
|
|
39
39
|
|
|
40
|
+
The README you see on [pypi.org/project/holoscript](https://pypi.org/project/holoscript/) comes from this file in the published wheel and sdist. Bump the package version (e.g. 6.0.7) when refreshing PyPI-facing docs so the project page picks up changes after the next release.
|
|
41
|
+
|
|
40
42
|
## Install
|
|
41
43
|
|
|
42
44
|
```bash
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
name = "holoscript"
|
|
7
7
|
# Local development version. Release version is derived from git tag (vX.Y.Z)
|
|
8
8
|
# by the publish-pypi.yml workflow. PyPI major tracks npm platform major.
|
|
9
|
-
version = "6.0.
|
|
9
|
+
version = "6.0.7"
|
|
10
10
|
description = "Python bindings for HoloScript — parsing, validation, and domain bridges for scientific computing"
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
requires-python = ">=3.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|