bsb-nest 6.0.0a18__tar.gz → 6.0.2__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.

@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: bsb-nest
3
+ Version: 6.0.2
4
+ Summary: NEST simulation adapter for the BSB framework.
5
+ Author-email: Robin De Schepper <robin@alexandria.sc>, Dimitri Rodarie <dimitri.rodarie@unipv.it>
6
+ Requires-Python: >=3.10,<4
7
+ Description-Content-Type: text/markdown
8
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
9
+ License-File: LICENSE
10
+ Requires-Dist: bsb-core~=6.0
11
+ Requires-Dist: bsb-core[parallel] ; extra == "parallel"
12
+ Provides-Extra: parallel
13
+
14
+ [![Build Status](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml)
15
+ [![Documentation](https://readthedocs.org/projects/bsb-nest/badge/?version=latest)](https://bsb-nest.readthedocs.io/en/latest/?badge=latest)
16
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
17
+
18
+ # bsb-nest
19
+
20
+ bsb-nest is a plugin of the [BSB](https://github.com/dbbs-lab/bsb).
21
+ It contains the interfaces and tools to simulate BSB circuits with the
22
+ [NEST simulator](https://www.nest-simulator.org/).
23
+
24
+ Comprehensive documentation is available at:
25
+
26
+ * [BSB Documentation](https://bsb.readthedocs.io/en/latest)
27
+ * [bsb-nest Documentation](https://bsb-nest.readthedocs.io/en/latest)
28
+
@@ -0,0 +1,14 @@
1
+ [![Build Status](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml)
2
+ [![Documentation](https://readthedocs.org/projects/bsb-nest/badge/?version=latest)](https://bsb-nest.readthedocs.io/en/latest/?badge=latest)
3
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
4
+
5
+ # bsb-nest
6
+
7
+ bsb-nest is a plugin of the [BSB](https://github.com/dbbs-lab/bsb).
8
+ It contains the interfaces and tools to simulate BSB circuits with the
9
+ [NEST simulator](https://www.nest-simulator.org/).
10
+
11
+ Comprehensive documentation is available at:
12
+
13
+ * [BSB Documentation](https://bsb.readthedocs.io/en/latest)
14
+ * [bsb-nest Documentation](https://bsb-nest.readthedocs.io/en/latest)
@@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
6
6
 
7
7
  [project]
8
8
  name = "bsb-nest"
9
- version = "6.0.0-a18"
9
+ version = "6.0.2"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.10,<4"
12
12
  dynamic = [ "description" ]
@@ -28,30 +28,17 @@ dependencies = [ "bsb-core~=6.0" ]
28
28
 
29
29
  [project.optional-dependencies]
30
30
  parallel = [ "bsb-core[parallel]" ]
31
- test = [
32
- "bsb-core[parallel]",
33
- "bsb-test~=6.0",
34
- "bsb-hdf5~=6.0",
35
- "bsb-arbor~=6.0",
36
- "coverage~=7.0"
37
- ]
38
- docs = [ "furo~=2024.0", "sphinxext-bsb~=6.0" ]
39
- dev = [
40
- "bsb-nest[test, docs]",
41
- "pre-commit~=3.5",
42
- "snakeviz~=2.1",
43
- "ruff>=0.8.2"
44
- ]
45
31
 
46
32
  [project.entry-points."bsb.simulation_backends"]
47
33
  nest = "bsb_nest"
48
34
 
49
- [tool.flit.module]
50
- name = "bsb_nest"
51
-
52
35
  [tool.uv]
36
+ default-groups = [ "dev", "docs", "test" ]
53
37
  sources = { }
54
38
 
39
+ [tool.flit.module]
40
+ name = "bsb_nest"
41
+
55
42
  [tool.coverage.run]
56
43
  branch = true
57
44
  source = [ "bsb_nest" ]
@@ -1,36 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: bsb-nest
3
- Version: 6.0.0a18
4
- Summary: NEST simulation adapter for the BSB framework.
5
- Author-email: Robin De Schepper <robin@alexandria.sc>, Dimitri Rodarie <dimitri.rodarie@unipv.it>
6
- Requires-Python: >=3.10,<4
7
- Description-Content-Type: text/markdown
8
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
9
- License-File: LICENSE
10
- Requires-Dist: bsb-core~=6.0
11
- Requires-Dist: bsb-nest[test, docs] ; extra == "dev"
12
- Requires-Dist: pre-commit~=3.5 ; extra == "dev"
13
- Requires-Dist: snakeviz~=2.1 ; extra == "dev"
14
- Requires-Dist: ruff>=0.8.2 ; extra == "dev"
15
- Requires-Dist: furo~=2024.0 ; extra == "docs"
16
- Requires-Dist: sphinxext-bsb~=6.0 ; extra == "docs"
17
- Requires-Dist: bsb-core[parallel] ; extra == "parallel"
18
- Requires-Dist: bsb-core[parallel] ; extra == "test"
19
- Requires-Dist: bsb-test~=6.0 ; extra == "test"
20
- Requires-Dist: bsb-hdf5~=6.0 ; extra == "test"
21
- Requires-Dist: bsb-arbor~=6.0 ; extra == "test"
22
- Requires-Dist: coverage~=7.0 ; extra == "test"
23
- Provides-Extra: dev
24
- Provides-Extra: docs
25
- Provides-Extra: parallel
26
- Provides-Extra: test
27
-
28
- [![Build Status](https://github.com/dbbs-lab/bsb-nest/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb-nest/actions/workflows/main.yml)
29
- [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
30
-
31
- # bsb-nest
32
-
33
- bsb-nest is a plugin of the [BSB](https://github.com/dbbs-lab/bsb).
34
- It contains the interfaces and tools to simulate BSB circuit with the
35
- [NEST simulator](https://www.nest-simulator.org/).
36
-
@@ -1,8 +0,0 @@
1
- [![Build Status](https://github.com/dbbs-lab/bsb-nest/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb-nest/actions/workflows/main.yml)
2
- [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
3
-
4
- # bsb-nest
5
-
6
- bsb-nest is a plugin of the [BSB](https://github.com/dbbs-lab/bsb).
7
- It contains the interfaces and tools to simulate BSB circuit with the
8
- [NEST simulator](https://www.nest-simulator.org/).
File without changes
File without changes
File without changes