bsb-json 4.1.0__tar.gz → 4.2.1__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-json might be problematic. Click here for more details.

@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.1
2
+ Name: bsb-json
3
+ Version: 4.2.1
4
+ Summary: JSON parser and utilities for the BSB.
5
+ Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
9
+ Requires-Dist: bsb-core~=4.1
10
+ Requires-Dist: bsb-json[test] ; extra == "dev"
11
+ Requires-Dist: build~=1.0 ; extra == "dev"
12
+ Requires-Dist: twine~=4.0 ; extra == "dev"
13
+ Requires-Dist: pre-commit~=3.5 ; extra == "dev"
14
+ Requires-Dist: black~=24.1.1 ; extra == "dev"
15
+ Requires-Dist: isort~=5.12 ; extra == "dev"
16
+ Requires-Dist: bump-my-version~=0.24 ; extra == "dev"
17
+ Requires-Dist: bsb-core[parallel] ; extra == "test"
18
+ Requires-Dist: bsb-test~=4.0 ; extra == "test"
19
+ Requires-Dist: coverage~=7.0 ; extra == "test"
20
+ Provides-Extra: dev
21
+ Provides-Extra: test
22
+
23
+ [![Build Status](https://github.com/dbbs-lab/bsb-json/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb-json/actions/workflows/main.yml)
24
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
25
+
26
+ # bsb-json
27
+
28
+ `bsb-json` is a plugin of [BSB](https://github.com/dbbs-lab/bsb) (see also
29
+ [bsb-core](https://github.com/dbbs-lab/bsb-core)).
30
+ It allows the user to write their models' configuration in the json format.
@@ -0,0 +1,8 @@
1
+ [![Build Status](https://github.com/dbbs-lab/bsb-json/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb-json/actions/workflows/main.yml)
2
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
3
+
4
+ # bsb-json
5
+
6
+ `bsb-json` is a plugin of [BSB](https://github.com/dbbs-lab/bsb) (see also
7
+ [bsb-core](https://github.com/dbbs-lab/bsb-core)).
8
+ It allows the user to write their models' configuration in the json format.
@@ -4,4 +4,4 @@ JSON parser and utilities for the BSB.
4
4
 
5
5
  from .schema import get_json_schema, get_schema
6
6
 
7
- __version__ = "4.1.0"
7
+ __version__ = "4.2.1"
@@ -9,6 +9,9 @@
9
9
  "y": 100.0,
10
10
  "z": 100.0
11
11
  },
12
+ "morphologies": [
13
+
14
+ ],
12
15
  "regions": {
13
16
 
14
17
  },
@@ -5,9 +5,9 @@
5
5
  "root": "network.hdf5"
6
6
  },
7
7
  "network": {
8
- "x": 400.0,
9
- "y": 600.0,
10
- "z": 400.0
8
+ "x": 200.0,
9
+ "y": 200.0,
10
+ "z": 200.0
11
11
  },
12
12
  "partitions": {
13
13
  "base_layer": {
@@ -20,29 +20,18 @@
20
20
  "spatial": {
21
21
  "radius": 2.5,
22
22
  "density": 3.9e-4
23
- },
24
- "plotting": {
25
- "display_name": "Template cell",
26
- "color": "#E62314",
27
- "opacity": 0.5
28
23
  }
29
24
  }
30
25
  },
31
26
  "placement": {
32
27
  "example_placement": {
33
- "strategy": "bsb.placement.ParticlePlacement",
28
+ "strategy": "bsb.placement.RandomPlacement",
34
29
  "cell_types": ["base_type"],
35
30
  "partitions": ["base_layer"]
36
31
  }
37
- },
38
- "after_placement": {
39
-
40
32
  },
41
33
  "connectivity": {
42
34
 
43
- },
44
- "after_connectivity": {
45
-
46
35
  },
47
36
  "simulations": {
48
37
 
@@ -24,17 +24,20 @@ name = "bsb_json"
24
24
  [project.optional-dependencies]
25
25
  test = ["bsb-core[parallel]", "bsb-test~=4.0", "coverage~=7.0"]
26
26
  dev = [
27
+ "bsb-json[test]",
28
+ "build~=1.0",
29
+ "twine~=4.0",
27
30
  "pre-commit~=3.5",
28
- "black~=24.0",
31
+ "black~=24.1.1",
29
32
  "isort~=5.12",
30
- "bump-my-version~=0.18"
33
+ "bump-my-version~=0.24"
31
34
  ]
32
35
 
33
36
  [tool.isort]
34
37
  profile = "black"
35
38
 
36
39
  [tool.bumpversion]
37
- current_version = "4.1.0"
40
+ current_version = "4.2.1"
38
41
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
39
42
  serialize = ["{major}.{minor}.{patch}"]
40
43
  search = "{current_version}"
bsb_json-4.1.0/PKG-INFO DELETED
@@ -1,21 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: bsb-json
3
- Version: 4.1.0
4
- Summary: JSON parser and utilities for the BSB.
5
- Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
6
- Requires-Python: >=3.8
7
- Description-Content-Type: text/markdown
8
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
9
- Requires-Dist: bsb-core~=4.1
10
- Requires-Dist: pre-commit~=3.5 ; extra == "dev"
11
- Requires-Dist: black~=24.0 ; extra == "dev"
12
- Requires-Dist: isort~=5.12 ; extra == "dev"
13
- Requires-Dist: bump-my-version~=0.18 ; extra == "dev"
14
- Requires-Dist: bsb-core[parallel] ; extra == "test"
15
- Requires-Dist: bsb-test~=4.0 ; extra == "test"
16
- Requires-Dist: coverage~=7.0 ; extra == "test"
17
- Provides-Extra: dev
18
- Provides-Extra: test
19
-
20
- # bsb-json
21
-
bsb_json-4.1.0/README.md DELETED
@@ -1 +0,0 @@
1
- # bsb-json
File without changes
File without changes