Metadata-Version: 2.1
Name: bsb-core
Version: 4.0.0b4
Summary: `bsb-core` is the backbone package contain the essential code of the BSB: A component
Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Dist: numpy~=1.19
Requires-Dist: scipy~=1.5
Requires-Dist: scikit-learn~=1.0
Requires-Dist: colour~=0.1
Requires-Dist: errr~=1.2
Requires-Dist: rtree~=1.0
Requires-Dist: psutil~=5.8
Requires-Dist: pynrrd~=1.0
Requires-Dist: morphio~=3.3
Requires-Dist: toml
Requires-Dist: requests~=2.30
Requires-Dist: urllib3~=2.0
Requires-Dist: appdirs~=1.4
Requires-Dist: neo[nixio]
Requires-Dist: tqdm~=4.50
Requires-Dist: shortuuid
Requires-Dist: quantities
Requires-Dist: build~=1.0 ; extra == "dev"
Requires-Dist: twine~=4.0 ; extra == "dev"
Requires-Dist: pre-commit~=3.5 ; extra == "dev"
Requires-Dist: black~=24.1.1 ; extra == "dev"
Requires-Dist: isort~=5.12 ; extra == "dev"
Requires-Dist: snakeviz~=2.1 ; extra == "dev"
Requires-Dist: bump2version~=1.0 ; extra == "dev"
Requires-Dist: sphinx~=7.0 ; extra == "docs"
Requires-Dist: furo~=2023.9 ; extra == "docs"
Requires-Dist: sphinxemoji~=0.2.0 ; extra == "docs"
Requires-Dist: sphinx_design~=0.5.0 ; extra == "docs"
Requires-Dist: sphinx-copybutton~=0.5.0 ; extra == "docs"
Requires-Dist: sphinxext-bsb~=0.2.1 ; extra == "docs"
Requires-Dist: mpi4py~=3.0 ; extra == "parallel"
Requires-Dist: zwembad~=1.2 ; extra == "parallel"
Requires-Dist: mpilock~=1.1 ; extra == "parallel"
Requires-Dist: bsb-arbor==0.0.0b0 ; extra == "test"
Requires-Dist: bsb-hdf5==1.0.0b1 ; extra == "test"
Requires-Dist: bsb-test==0.0.0b7 ; extra == "test"
Requires-Dist: coverage~=7.3 ; extra == "test"
Project-URL: Bug Tracker, https://github.com/dbbs-lab/bsb/issues/
Project-URL: Documentation, https://bsb.readthedocs.io/
Project-URL: Home, https://github.com/dbbs-lab/bsb
Project-URL: Source Code, https://github.com/dbbs-lab/bsb/
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: parallel
Provides-Extra: test

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Documentation Status](https://readthedocs.org/projects/bsb/badge/?version=latest)](https://bsb.readthedocs.io/en/latest/?badge=latest)
[![Build Status](https://travis-ci.com/dbbs-lab/bsb.svg?branch=master)](https://travis-ci.com/dbbs-lab/bsb)
[![codecov](https://codecov.io/gh/dbbs-lab/bsb/branch/master/graph/badge.svg)](https://codecov.io/gh/dbbs-lab/bsb)

<h3>:closed_book: Read the documentation on https://bsb.readthedocs.io/en/latest</h3>

# BSB: A component framework for neural modelling

Developed by the Department of Brain and Behavioral Sciences at the University of Pavia,
the BSB is a component framework for neural modelling, which focusses on component
declarations to piece together a model. The component declarations can be made in any
supported configuration language, or using the library functions in Python. It offers
parallel reconstruction and simulation of any network topology, placement and/or
connectivity strategy.


## Installation

The BSB requires Python 3.9+.

### pip

This software can be installed as a Python package from PyPI through pip:

```
pip install "bsb>=4.0.0b0"
```

### Developers

Developers best use pip's *editable* install. This creates a live link between the
installed package and the local git repository:

```
 git clone git@github.com:dbbs-lab/bsb-core
 cd bsb
 pip install -e .[dev]
 pre-commit install
```

## Usage

The scaffold framework is best used in a project context. Create a working directory for
each of your modelling projects and use the command line to configure, reconstruct or
simulate your models.

### Creating a project

You can create a quickstart project using:

```
bsb new my_model --quickstart
cd my_model
```

### Reconstructing a network

You can use your project to create reconstructions of your model, generating cell positions
and connections:

```
bsb compile -p
```

This creates a [network file](bsb.readthedocs.io/getting-started/networks.html) and plots the network.

### Simulating a network

The default project currently contains no simulation config.

# Contributing

All contributions are very much welcome.
Take a look at the [contribution guide](CONTRIBUTING.md)

# Acknowledgements

This research has received funding from the European Union’s Horizon 2020 Framework
Program for Research and Innovation under the Specific Grant Agreement No. 945539
(Human Brain Project SGA3) and Specific Grant Agreement No. 785907 (Human Brain
Project SGA2) and from Centro Fermi project “Local Neuronal Microcircuits” to ED. We
acknowledge the use of EBRAINS platform and Fenix Infrastructure resources, which are
partially funded from the European Union’s Horizon 2020 research and innovation
programme through the ICEI project under the grant agreement No. 800858

