Metadata-Version: 2.4
Name: gds-domains
Version: 0.1.0
Summary: Domain DSLs for the GDS ecosystem — stockflow, control, business, software, games, symbolic
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: business-dynamics,control-systems,domain-specific-language,game-theory,gds-framework,generalized-dynamical-systems,software-architecture,stockflow
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: pydantic>=2.10
Provides-Extra: all
Requires-Dist: jinja2>=3.1; extra == 'all'
Requires-Dist: nashpy>=0.0.41; extra == 'all'
Requires-Dist: numpy>=1.26; extra == 'all'
Requires-Dist: sympy>=1.13; extra == 'all'
Requires-Dist: typer>=0.15; extra == 'all'
Provides-Extra: games
Requires-Dist: jinja2>=3.1; extra == 'games'
Requires-Dist: typer>=0.15; extra == 'games'
Provides-Extra: nashpy
Requires-Dist: nashpy>=0.0.41; extra == 'nashpy'
Requires-Dist: numpy>=1.26; extra == 'nashpy'
Provides-Extra: symbolic
Requires-Dist: sympy>=1.13; extra == 'symbolic'
Description-Content-Type: text/markdown

# gds-domains

Domain-specific languages for the [GDS ecosystem](https://github.com/BlockScience/gds-core).

## Subpackages

- `gds_domains.stockflow` — Stock-flow system dynamics DSL
- `gds_domains.control` — State-space control systems DSL
- `gds_domains.business` — Business dynamics DSL (CLD, supply chain, VSM)
- `gds_domains.software` — Software architecture DSL (DFD, state machine, component, C4, ERD, dependency)
- `gds_domains.games` — Compositional game theory DSL
- `gds_domains.symbolic` — SymPy bridge for symbolic control models

## Installation

```bash
pip install gds-domains                          # base (stockflow, control, business, software)
pip install gds-domains[games]                   # + typer CLI, Jinja2 reports
pip install gds-domains[symbolic]                # + SymPy
pip install gds-domains[nashpy]                  # + Nash equilibrium
pip install gds-domains[all]                     # everything
```
