Skip to content

Commit 89ef959

Browse files
authored
Merge pull request #84 from BrainAnnex/dev
Changed version to "1.0.0rc4"
2 parents 3d77316 + dce41a5 commit 89ef959

File tree

4 files changed

+49
-7
lines changed

4 files changed

+49
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Life123
22
Dynamical Modeling of Biological Systems in 1, 2 and 3D (as well as single-compartment reactions)
33

4-
Includes diffusion, reactions, diffusion/reaction and (coming soon) membranes and compartments.
4+
Includes diffusion, reactions, diffusion/reaction, membranes and compartments.
55

66
## Fundamental Goals
77
1. Detailed, quantitative biological simulations, including whole prokaryotic cells (bacteria), and later eukaryotic cells

environment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ channels:
33
- conda-forge
44
dependencies:
55
- python=3.9
6-
- numpy=1.22.4
6+
- numpy=1.26.4
77
- pytest=6.2.5
8-
- jupyterlab=3.4.8
8+
- jupyterlab=3.6.8
99
- ipywidgets=7.7.1
1010
- jupyter-dash=0.4.2
11-
- plotly=5.9.0
12-
- pandas=1.4.3
13-
- scipy=1.10.1
11+
- plotly=5.24.1
12+
- pandas=1.5.3
13+
- scipy=1.13.1
1414
- pip
1515
- pip:
1616
- neo4j==4.4.11

life123/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
:license: MIT. See LICENSE file for more details.
1111
"""
1212

13-
__version__ = "1.0.0rc3"
13+
__version__ = "1.0.0rc4"
1414

1515

1616
from life123.bio_sim_1d import BioSim1D

pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "life123"
7+
version = "1.0-rc.4"
8+
authors = [
9+
{ name = "Julian West Life123.science" },
10+
]
11+
maintainers = [
12+
{ email = "julian@brainannex.org" },
13+
]
14+
description = "Dynamical Modeling of Biological Systems - Quantitative Reactomics"
15+
readme = "README.md"
16+
license = "MIT"
17+
requires-python = ">=3.9"
18+
classifiers = [
19+
"Programming Language :: Python :: 3",
20+
"License :: OSI Approved :: MIT License",
21+
"Operating System :: OS Independent",
22+
]
23+
dependencies = [
24+
"neoaccess==4.4.1",
25+
"numpy~=1.26.4",
26+
"scipy~=1.13.1",
27+
"pandas~=1.5.3",
28+
"plotly~=5.24.1"
29+
]
30+
keywords = [
31+
"systems biology",
32+
"dynamical modeling",
33+
"reactions and diffusion",
34+
"quantitative reactomics"
35+
]
36+
37+
[project.urls]
38+
Homepage = "https://life123.science"
39+
"Home-page" = "https://life123.science"
40+
"Bug Tracker" = "https://github.com/BrainAnnex/life123/issues"
41+
Source = "https://github.com/BrainAnnex/life123"
42+
Documentation = "https://life123.science"

0 commit comments

Comments
 (0)