bsb 4.2.0__py3-none-any.whl → 4.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bsb might be problematic. Click here for more details.

@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bsb
3
- Version: 4.2.0
3
+ Version: 4.3.1
4
4
  Summary: Black-box component framework for multiscale neural modeling
5
- Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
5
+ Author: Robin De Schepper
6
+ Maintainer-email: Dimitri Rodarie <dimitri.rodarie@unipv.it>
6
7
  License: GNU GENERAL PUBLIC LICENSE
7
8
  Version 3, 29 June 2007
8
9
 
@@ -678,23 +679,146 @@ License: GNU GENERAL PUBLIC LICENSE
678
679
  Public License instead of this License. But first, please read
679
680
  <https://www.gnu.org/licenses/why-not-lgpl.html>.
680
681
 
682
+ Project-URL: Home, https://github.com/dbbs-lab/bsb
683
+ Project-URL: Documentation, https://bsb.readthedocs.io/
684
+ Project-URL: Bug Tracker, https://github.com/dbbs-lab/bsb/issues/
685
+ Project-URL: Source Code, https://github.com/dbbs-lab/bsb/
681
686
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
687
+ Requires-Python: >=3.9
682
688
  Description-Content-Type: text/markdown
683
689
  License-File: LICENSE
684
- Requires-Dist: bsb-core ==4.2
685
- Requires-Dist: bsb-json ==4.1.0
686
- Requires-Dist: bsb-yaml ==4.1.0
687
- Requires-Dist: bsb-hdf5 ==4.0.0
690
+ Requires-Dist: bsb-core ~=4.5.3
691
+ Requires-Dist: bsb-json ~=4.2.1
692
+ Requires-Dist: bsb-yaml ~=4.2.1
693
+ Requires-Dist: bsb-hdf5 ~=4.1.1
688
694
  Provides-Extra: arbor
689
- Requires-Dist: bsb-arbor ==4.0.0 ; extra == 'arbor'
695
+ Requires-Dist: bsb-arbor ==4.1.0 ; extra == 'arbor'
690
696
  Provides-Extra: nest
691
- Requires-Dist: bsb-nest ==4.1.0 ; extra == 'nest'
697
+ Requires-Dist: bsb-nest ==4.3.1 ; extra == 'nest'
692
698
  Provides-Extra: neuron
693
- Requires-Dist: bsb-neuron ==4.0.2 ; extra == 'neuron'
699
+ Requires-Dist: bsb-neuron ==4.0.3 ; extra == 'neuron'
694
700
  Provides-Extra: parallel
695
701
  Requires-Dist: bsb-core[parallel] ; extra == 'parallel'
696
- Provides-Extra: plot
697
- Requires-Dist: bsb-plotting ==0.0.0b0 ; extra == 'plot'
698
702
 
699
- # bsb
700
- Metadata repository for the `bsb` package, which installs the `bsb-core` framework and a default set of plugins.
703
+ [![Build Status](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml)
704
+ # Brain Scaffold Builder suite
705
+ Developed by the Department of Brain and Behavioral Sciences at the University of Pavia,
706
+ the Brain Scaffold Builder (BSB) is a component framework for neural modelling, which focuses on component
707
+ declarations to piece together a brain model.
708
+ The component declarations can be made in any supported configuration language,
709
+ or using the library functions in Python.
710
+ It offers parallel reconstruction and simulation of any network topology, placement and/or connectivity
711
+ strategy.
712
+
713
+ BSB is decomposed into several repositories:
714
+ - [bsb-core](#bsb-core) — Install the bsb framework. Core component of the `bsb` suite.
715
+ - [bsb-hdf5](#bsb-hdf5) — Leverage the hdf5 file format to save the models.
716
+ - [bsb-json](#bsb-json) — Read and write configuration files in json format.
717
+ - [bsb-yaml](#bsb-yaml) — Read and write configuration files in yaml format
718
+ - [bsb-nest](#bsb-nest) — Simulate brain models as point-neuron networks with the NEST simulator.
719
+ - [bsb-neuron](#bsb-neuron) — Simulate brain models as detailed neuron networks with the NEURON simulator.
720
+ - [bsb-arbor](#bsb-arbor) — Simulate brain models as detailed neuron networks with the ARBOR simulator.
721
+
722
+ ## Installation
723
+ This repository contains the metadata for the `bsb` package.
724
+ It is highly recommended that you create a python environment before installing the `bsb` package.
725
+ BSB currently supports python 3.9, 3.10 and 3.11.
726
+ With the `bsb` package will be installed the
727
+ [bsb-core](#bsb-core) framework and the following default set of plugins:
728
+ - [bsb-hdf5](#bsb-hdf5)
729
+ - [bsb-json](#bsb-json)
730
+ - [bsb-yaml](#bsb-yaml)
731
+
732
+ You can install these python libraries with the following command:
733
+ ```shell
734
+ pip install bsb
735
+ ```
736
+ Check also the following sections to install the other bsb plugin.
737
+
738
+ ## BSB repositories
739
+ ### bsb-core
740
+
741
+ Useful links:
742
+ [GitHub repo](https://github.com/dbbs-lab/bsb-core),
743
+
744
+ This project contains the main `bsb` framework and is needed by all the other repositories.
745
+ It also contains tools to support parallel execution with MPI. To install this support, run the following command:
746
+ ```shell
747
+ pip install bsb[parallel]
748
+ ```
749
+
750
+ ### bsb-hdf5
751
+
752
+ Useful links:
753
+ [GitHub repo](https://github.com/dbbs-lab/bsb-hdf5).
754
+
755
+ This project allows the user to save their model into the hdf5 file format.
756
+ This plugin is installed by default with the `bsb` package.
757
+
758
+ ### bsb-json
759
+
760
+ Useful links:
761
+ [GitHub repo](https://github.com/dbbs-lab/bsb-json).
762
+
763
+ This project allows the user to write their model configuration in the json file format.
764
+ This plugin is installed by default with the `bsb` package.
765
+
766
+ ### bsb-yaml
767
+
768
+ Useful links:
769
+ [GitHub repo](https://github.com/dbbs-lab/bsb-yaml).
770
+
771
+ This project allows the user to write their model configuration in the yaml file format.
772
+ This plugin is installed by default with the `bsb` package.
773
+
774
+ ### bsb-nest
775
+
776
+ Useful links:
777
+ [GitHub repo](https://github.com/dbbs-lab/bsb-nest).
778
+
779
+ This project allows the user to simulate their brain model as point-neuron networks with the
780
+ [NEST simulator](https://www.nest-simulator.org/).
781
+ This plugin is not installed by default with the `bsb` package. To install it, you can run the following command:
782
+
783
+ ```shell
784
+ pip install bsb[nest]
785
+ ```
786
+ > [!WARNING]
787
+ > The NEST simulator is not installed with the bsb-nest package and should be installed separately.
788
+
789
+ ### bsb-neuron
790
+
791
+ Useful links:
792
+ [GitHub repo](https://github.com/dbbs-lab/bsb-neuron).
793
+
794
+ This project allows the user to simulate their brain model as detailed neural circuits with the
795
+ [NEURON simulator](https://www.neuron.yale.edu/neuron/).
796
+ This plugin is not installed by default with the `bsb` package. To install it, you can run the following command:
797
+ ```shell
798
+ pip install bsb[neuron]
799
+ ```
800
+
801
+ ### bsb-arbor
802
+
803
+ Useful links:
804
+ [GitHub repo](https://github.com/dbbs-lab/bsb-arbor).
805
+
806
+ This project allows the user to simulate their brain model as detailed neural circuits with the
807
+ [ARBOR simulator](https://arbor-sim.org/).
808
+ This plugin is not installed by default with the `bsb` package. To install it, you can run the following command:
809
+ ```shell
810
+ pip install bsb[arbor]
811
+ ```
812
+
813
+ ## Running bsb reconstructions and simulations
814
+ Check BSB [Documentation](https://bsb.readthedocs.io/en/latest).
815
+
816
+ ## Acknowledgements
817
+
818
+ This research has received funding from the European Union’s Horizon 2020 Framework
819
+ Program for Research and Innovation under the Specific Grant Agreement No. 945539
820
+ (Human Brain Project SGA3) and Specific Grant Agreement No. 785907 (Human Brain
821
+ Project SGA2) and from Centro Fermi project “Local Neuronal Microcircuits” to ED. We
822
+ acknowledge the use of EBRAINS platform and Fenix Infrastructure resources, which are
823
+ partially funded from the European Union’s Horizon 2020 research and innovation
824
+ programme through the ICEI project under the grant agreement No. 800858
@@ -0,0 +1,5 @@
1
+ bsb-4.3.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
2
+ bsb-4.3.1.dist-info/METADATA,sha256=_C1vm7GLkQrSsK02FE74BbIoNshY9wQfAR1RD2i5vag,46508
3
+ bsb-4.3.1.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
4
+ bsb-4.3.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
5
+ bsb-4.3.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.3.0)
2
+ Generator: setuptools (75.5.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,5 +0,0 @@
1
- bsb-4.2.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
2
- bsb-4.2.0.dist-info/METADATA,sha256=XEYeQI-wwezaCBkgMM9S1b8buzbqnwIZmXcAKpvfIC8,41490
3
- bsb-4.2.0.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
4
- bsb-4.2.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
5
- bsb-4.2.0.dist-info/RECORD,,
File without changes