bsb-arbor 0.0.0b0__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.

File without changes
@@ -1,14 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bsb-arbor
3
- Version: 0.0.0b0
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
12
+ Requires-Dist: bsb-core[parallel] ; extra == "test"
13
+ Requires-Dist: bsb-nest>=0.0.0b0 ; extra == "test"
11
14
  Requires-Dist: bsb-test>=0.0.0b0 ; extra == "test"
15
+ Requires-Dist: coverage~=7.0 ; extra == "test"
12
16
  Provides-Extra: test
13
17
 
14
18
  # bsb-arbor
@@ -1 +1 @@
1
- # bsb-arbor
1
+ # bsb-arbor
@@ -1,11 +1,12 @@
1
- """
2
- Arbor simulation adapter for the BSB framework
3
- """
4
-
5
- from bsb.simulation import SimulationBackendPlugin
6
- from .simulation import ArborSimulation
7
- from .adapter import ArborAdapter
8
- from . import devices
9
-
10
- __version__ = "0.0.0b0"
11
- __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)