bsb-nest 4.1.0__tar.gz → 4.2.0__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-nest might be problematic. Click here for more details.
- bsb_nest-4.2.0/PKG-INFO +36 -0
- bsb_nest-4.2.0/README.md +9 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/__init__.py +1 -1
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/pyproject.toml +8 -3
- bsb_nest-4.1.0/PKG-INFO +0 -23
- bsb_nest-4.1.0/README.md +0 -1
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/LICENSE +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/adapter.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/cell.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/connection.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/device.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/devices/__init__.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/devices/dc_generator.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/devices/multimeter.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/devices/poisson_generator.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/devices/spike_recorder.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/distributions.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/exceptions.py +0 -0
- {bsb_nest-4.1.0 → bsb_nest-4.2.0}/bsb_nest/simulation.py +0 -0
bsb_nest-4.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: bsb-nest
|
|
3
|
+
Version: 4.2.0
|
|
4
|
+
Summary: NEST simulation adapter for the BSB framework.
|
|
5
|
+
Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
8
|
+
Requires-Dist: bsb-core~=4.1
|
|
9
|
+
Requires-Dist: bsb-nest[test] ; extra == "dev"
|
|
10
|
+
Requires-Dist: build~=1.0 ; extra == "dev"
|
|
11
|
+
Requires-Dist: twine~=4.0 ; extra == "dev"
|
|
12
|
+
Requires-Dist: pre-commit~=3.5 ; extra == "dev"
|
|
13
|
+
Requires-Dist: black~=24.1.1 ; extra == "dev"
|
|
14
|
+
Requires-Dist: isort~=5.12 ; extra == "dev"
|
|
15
|
+
Requires-Dist: snakeviz~=2.1 ; extra == "dev"
|
|
16
|
+
Requires-Dist: bump-my-version~=0.24 ; extra == "dev"
|
|
17
|
+
Requires-Dist: bsb-core[parallel] ; extra == "parallel"
|
|
18
|
+
Requires-Dist: bsb-core[parallel] ; extra == "test"
|
|
19
|
+
Requires-Dist: bsb-test~=4.0 ; extra == "test"
|
|
20
|
+
Requires-Dist: bsb-hdf5~=4.0 ; extra == "test"
|
|
21
|
+
Requires-Dist: bsb-arbor~=4.0 ; extra == "test"
|
|
22
|
+
Requires-Dist: coverage~=7.0 ; extra == "test"
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Provides-Extra: parallel
|
|
25
|
+
Provides-Extra: test
|
|
26
|
+
|
|
27
|
+
[](https://github.com/dbbs-lab/bsb-nest/actions/workflows/build.yml)
|
|
28
|
+
[](https://github.com/psf/black)
|
|
29
|
+
|
|
30
|
+
# bsb-nest
|
|
31
|
+
|
|
32
|
+
bsb-nest is a pluggin of [BSB](https://github.com/dbbs-lab/bsb) (see also
|
|
33
|
+
[bsb-core](https://github.com/dbbs-lab/bsb-core)).
|
|
34
|
+
It contains the interfaces and tools to simulate BSB circuit with the
|
|
35
|
+
[NEST simulator](https://www.nest-simulator.org/).
|
|
36
|
+
|
bsb_nest-4.2.0/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
[](https://github.com/dbbs-lab/bsb-nest/actions/workflows/build.yml)
|
|
2
|
+
[](https://github.com/psf/black)
|
|
3
|
+
|
|
4
|
+
# bsb-nest
|
|
5
|
+
|
|
6
|
+
bsb-nest is a pluggin of [BSB](https://github.com/dbbs-lab/bsb) (see also
|
|
7
|
+
[bsb-core](https://github.com/dbbs-lab/bsb-core)).
|
|
8
|
+
It contains the interfaces and tools to simulate BSB circuit with the
|
|
9
|
+
[NEST simulator](https://www.nest-simulator.org/).
|
|
@@ -20,6 +20,7 @@ nest = "bsb_nest"
|
|
|
20
20
|
[project.optional-dependencies]
|
|
21
21
|
parallel = ["bsb-core[parallel]"]
|
|
22
22
|
test = [
|
|
23
|
+
"bsb-core[parallel]",
|
|
23
24
|
"bsb-test~=4.0",
|
|
24
25
|
"bsb-hdf5~=4.0",
|
|
25
26
|
# Required to load the Brunel config file
|
|
@@ -27,10 +28,14 @@ test = [
|
|
|
27
28
|
"coverage~=7.0"
|
|
28
29
|
]
|
|
29
30
|
dev = [
|
|
31
|
+
"bsb-nest[test]",
|
|
32
|
+
"build~=1.0",
|
|
33
|
+
"twine~=4.0",
|
|
30
34
|
"pre-commit~=3.5",
|
|
31
|
-
"black~=24.
|
|
35
|
+
"black~=24.1.1",
|
|
32
36
|
"isort~=5.12",
|
|
33
|
-
"
|
|
37
|
+
"snakeviz~=2.1",
|
|
38
|
+
"bump-my-version~=0.24"
|
|
34
39
|
]
|
|
35
40
|
|
|
36
41
|
[tool.black]
|
|
@@ -41,7 +46,7 @@ profile = "black"
|
|
|
41
46
|
known_third_party = ["nest"]
|
|
42
47
|
|
|
43
48
|
[tool.bumpversion]
|
|
44
|
-
current_version = "4.
|
|
49
|
+
current_version = "4.2.0"
|
|
45
50
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
46
51
|
serialize = ["{major}.{minor}.{patch}"]
|
|
47
52
|
search = "{current_version}"
|
bsb_nest-4.1.0/PKG-INFO
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: bsb-nest
|
|
3
|
-
Version: 4.1.0
|
|
4
|
-
Summary: NEST simulation adapter for the BSB framework.
|
|
5
|
-
Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
|
|
6
|
-
Description-Content-Type: text/markdown
|
|
7
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
8
|
-
Requires-Dist: bsb-core~=4.1
|
|
9
|
-
Requires-Dist: pre-commit~=3.5 ; extra == "dev"
|
|
10
|
-
Requires-Dist: black~=24.0 ; extra == "dev"
|
|
11
|
-
Requires-Dist: isort~=5.12 ; extra == "dev"
|
|
12
|
-
Requires-Dist: bump-my-version~=0.18 ; extra == "dev"
|
|
13
|
-
Requires-Dist: bsb-core[parallel] ; extra == "parallel"
|
|
14
|
-
Requires-Dist: bsb-test~=4.0 ; extra == "test"
|
|
15
|
-
Requires-Dist: bsb-hdf5~=4.0 ; extra == "test"
|
|
16
|
-
Requires-Dist: bsb-arbor~=4.0 ; extra == "test"
|
|
17
|
-
Requires-Dist: coverage~=7.0 ; extra == "test"
|
|
18
|
-
Provides-Extra: dev
|
|
19
|
-
Provides-Extra: parallel
|
|
20
|
-
Provides-Extra: test
|
|
21
|
-
|
|
22
|
-
# bsb-nest
|
|
23
|
-
|
bsb_nest-4.1.0/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# bsb-nest
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|