bsb-arbor 0.0.0b1__tar.gz → 0.0.0b3__tar.gz

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-arbor might be problematic. Click here for more details.

@@ -1,14 +1,16 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bsb-arbor
3
- Version: 0.0.0b1
3
+ Version: 0.0.0b3
4
4
  Summary: Arbor simulation adapter for the BSB framework
5
5
  Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
6
6
  Description-Content-Type: text/markdown
7
7
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
8
+ Requires-Dist: numpy
8
9
  Requires-Dist: bsb-core>=4.0.0b0,<=4.0.0b9999
9
10
  Requires-Dist: arbor~=0.9
10
11
  Requires-Dist: arborize[arbor]>=4.0.0b1
11
12
  Requires-Dist: bsb-core[parallel] ; extra == "test"
13
+ Requires-Dist: bsb-nest>=0.0.0b0 ; extra == "test"
12
14
  Requires-Dist: bsb-test>=0.0.0b0 ; extra == "test"
13
15
  Requires-Dist: coverage~=7.0 ; extra == "test"
14
16
  Provides-Extra: test
@@ -1 +1 @@
1
- # bsb-arbor
1
+ # bsb-arbor
@@ -1,12 +1,12 @@
1
- """
2
- Arbor simulation adapter for the BSB framework
3
- """
4
-
5
- from bsb.simulation import SimulationBackendPlugin
6
-
7
- from . import devices
8
- from .adapter import ArborAdapter
9
- from .simulation import ArborSimulation
10
-
11
- __version__ = "0.0.0b1"
12
- __plugin__ = SimulationBackendPlugin(Simulation=ArborSimulation, Adapter=ArborAdapter)
1
+ """
2
+ Arbor simulation adapter for the BSB framework
3
+ """
4
+
5
+ from bsb import SimulationBackendPlugin
6
+
7
+ from . import devices
8
+ from .adapter import ArborAdapter
9
+ from .simulation import ArborSimulation
10
+
11
+ __version__ = "0.0.0-b3"
12
+ __plugin__ = SimulationBackendPlugin(Simulation=ArborSimulation, Adapter=ArborAdapter)