Metadata-Version: 2.4
Name: neuromass
Version: 0.1.0
Summary: Neuroscience-oriented neural mass and mean-field simulation toolkit.
Author: Florian Kolbl, Yannick Bornat, Mehrdad Paryav, Salma Taki
License-Expression: CECILL-B
Keywords: neuroscience,neural-mass,mean-field,kuramoto,dynamical-systems
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx>=7; extra == "docs"
Requires-Dist: furo; extra == "docs"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: license-file

# neuromass

`neuromass` is an in-progress Python package for neural mass, mean-field, and
related computational neuroscience models.

## Project layout

```text
neuromass/
├── docs/
├── examples/
├── src/
│   └── neuromass/
│       └── models/
│           └── kuramoto/
│               └── _native/
├── tests/
├── environment.yml
└── pyproject.toml
```

The public API lives in `src/neuromass/`, while model-specific compiled sources
can be grouped inside each model family under `_native/`.
