Metadata-Version: 2.1
Name: hgraph
Version: 0.1.12
Summary: A functional reactive engine
Project-URL: Homepage, https://github.com/hhenson/hgraph
Project-URL: Repository, https://github.com/hhenson/hgraph.git
Author-email: Howard Henson <howard@henson.me.uk>
License: MIT License
        
        Copyright (c) 2023 Howard Henson
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: forward propogating graph,fpg,functional reactive programming,graph,reactive,time series
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.11
Requires-Dist: frozendict>=2.3.10
Requires-Dist: numpy>=1.23
Requires-Dist: sortedcontainers>=2.4.0
Provides-Extra: all
Requires-Dist: hgraph[polars]; extra == 'all'
Provides-Extra: polars
Requires-Dist: polars>=0.20.2; extra == 'polars'
Description-Content-Type: text/markdown

# hgraph
A functional reactive programming engine with a Python front-end.


## Development

The project is currently configured to make use of [Hatchling](https://hatch.pypa.io/latest/) for dependency management. 
Take a look at the website to see how best to install the tool.
Once you have checked out the project, you can install the project for development using the following command:

```bash
hatch env create all.py3.11
```

Then you can find the location of the installation using:

```bash
hatch env find all.py3.11
```

For users of CLion / PyCharm, you can then add the environment by selecting an existing virtual environment using
the location above.

### Run MyPy Type Checking

```bash
hatch run types:check
```

### Run Tests

```bash
# No Coverage
hatch run test
```

```bash
# Generate Coverage Report
hatch run cov
```
