Metadata-Version: 2.4
Name: executable_engineering
Version: 0.1.29
Summary: Tools for ENGPHYS 3NM4
Home-page: https://github.com/themintlab/ExecutableEngineering/tree/main/executable_engineering
Author: Michael Welland
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: networkx
Requires-Dist: ipywidgets
Requires-Dist: IPython
Requires-Dist: pyppeteer
Requires-Dist: nbconvert
Requires-Dist: scipy
Requires-Dist: plotly
Requires-Dist: pandas
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# executable_engineering

`executable_engineering` is the interactive numerical methods support package used by this book.

## Local development

From the repository root:

```bash
python -m pip install -r requirements-book.txt
```

That installs the in-repo package in editable mode so notebook changes use the local source.

## Standalone package checks

```bash
python -m pip install -e ./executable_engineering
( cd /tmp && python -c "from executable_engineering import RootFinderOpen, RootFinderClosed" )
python -m build ./executable_engineering
```
