Metadata-Version: 2.4
Name: gds-interchange
Version: 0.1.0
Summary: Bidirectional format bridges (OWL/RDF, SysML, FMI) for gds-framework specifications
Project-URL: Homepage, https://github.com/BlockScience/gds-core
Project-URL: Repository, https://github.com/BlockScience/gds-core
Project-URL: Documentation, https://blockscience.github.io/gds-core
Author-email: Rohan Mehta <rohan@block.science>
License-Expression: Apache-2.0
Keywords: gds-framework,generalized-dynamical-systems,interchange,ontology,owl,rdf,shacl,sparql,sysml,turtle
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: gds-framework>=0.3.0
Requires-Dist: rdflib>=7.0
Provides-Extra: all
Requires-Dist: httpx>=0.27; extra == 'all'
Requires-Dist: pyshacl>=0.27; extra == 'all'
Provides-Extra: shacl
Requires-Dist: pyshacl>=0.27; extra == 'shacl'
Provides-Extra: sysml
Requires-Dist: httpx>=0.27; extra == 'sysml'
Description-Content-Type: text/markdown

# gds-interchange

Bidirectional format bridges for [gds-framework](https://github.com/BlockScience/gds-core) specifications.

## Subpackages

- `gds_interchange.owl` — OWL/Turtle, SHACL validation, and SPARQL queries

## Installation

```bash
pip install gds-interchange
pip install gds-interchange[shacl]  # SHACL validation support
```

## Usage

```python
from gds_interchange.owl import spec_to_turtle, build_core_ontology
```
