Metadata-Version: 2.2
Name: chaste_codegen
Version: 0.10.6
Summary: Code generation for cardiac Chaste
Home-page: https://github.com/ModellingWebLab/chaste-codegen
Author: Maurice Hendrix, Michael Clerx, Jonathan Cooper
Author-email: Maurice.Hendrix@nottingham.ac.uk
Maintainer: Maurice Hendrix
Maintainer-email: Maurice.Hendrix@nottingham.ac.uk
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: py>=1.10.0
Requires-Dist: decorator>=4.5
Requires-Dist: importlib-metadata>=1.7
Requires-Dist: isodate>=0.6
Requires-Dist: lxml>=4.7
Requires-Dist: MarkupSafe>=1.2
Requires-Dist: mpmath>=1.1
Requires-Dist: networkx>=2.4
Requires-Dist: packaging>=20.4
Requires-Dist: Pint<0.20,>=0.9
Requires-Dist: pyparsing<4,>=2.4.7
Requires-Dist: rdflib>=5.0
Requires-Dist: six>=1.15
Requires-Dist: sympy<1.11,>=1.9
Requires-Dist: zipp>=1.2
Requires-Dist: Jinja2>=3.0
Requires-Dist: cellmlmanip>=0.3.7
Provides-Extra: docs
Requires-Dist: sphinx>=3.0; extra == "docs"
Requires-Dist: sphinx-automodapi>=0.12; extra == "docs"
Provides-Extra: test
Requires-Dist: pytest-cov>=2.10; extra == "test"
Requires-Dist: pytest>=4.6; extra == "test"
Requires-Dist: flake8>=3; extra == "test"
Requires-Dist: isort; extra == "test"
Requires-Dist: mock>=3.0.5; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

![workflow](https://github.com/ModellingWebLab/chaste-codegen/actions/workflows/pytest.yml/badge.svg) [![Documentation Status](https://readthedocs.org/projects/chaste-codegen/badge/?version=latest)](https://chaste-codegen.readthedocs.io/en/latest/?badge=latest) [![codecov](https://codecov.io/gh/ModellingWebLab/chaste-codegen/branch/master/graph/badge.svg)](https://codecov.io/gh/ModellingWebLab/chaste-codegen)

# Code generation for cardiac Chaste

The `chaste_codegen` module takes [CellML](https://www.cellml.org/) models as input, via [cellmlmanip](https://github.com/ModellingWebLab/cellmlmanip) to read and manipulate them, then uses templating to generate C++ code.

The [jinja2](http://jinja.pocoo.org/) templating engine is used.

## Installing 
We recommend installing chaste_codegen in a virtual environment (using virtualenv or conda)

Users install `chaste_codegen` using pip.

```
pip install chaste_codegen
```

## Using `chaste_codegen`
After installation, chaste_codegen can be called using the `chaste_codegen` command:
```
usage: chaste_codegen [-h] [--version] [--normal] [--cvode]
                      [--cvode-data-clamp] [--backward-euler] [--rush-larsen]
                      [--grl1] [--grl2] [--rush-larsen-labview]
                      [--rush-larsen-c] [-j] [-o OUTFILE]
                      [--output-dir OUTPUT_DIR] [--show-outputs] [-c CLS_NAME]
                      [-q] [--skip-ingularity-fixes] [-y] [--opt] [-m]
                      [--lookup-table <metadata tag> min max step]
                      [--use-model-factory]
                      cellml_file
chaste_codegen: error: the following arguments are required: cellml_file

```

For more information about the available options call
`chaste_codegen -h` or see the [CodeGenerationFromCellML guide](https://chaste.github.io/docs/user-guides/code-generation-from-cellml/) 


## Release notes
For release notes see [RELEASE.md](./RELEASE.md)


## Documentation
API documentation explaining how to use cellmlmanip can be found on [readthedocs](https://chaste-codegen.readthedocs.io/en/latest/)


## Contributing
For guidelines on contributing to `chaste_codegen`, please see [CONTRIBUTING.md](CONTRIBUTING.md).
