modelbase2 0.1.55__tar.gz → 0.1.57__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.
- {modelbase2-0.1.55 → modelbase2-0.1.57}/PKG-INFO +1 -1
- {modelbase2-0.1.55 → modelbase2-0.1.57}/pyproject.toml +2 -2
- {modelbase2-0.1.55 → modelbase2-0.1.57}/setup.py +1 -1
- {modelbase2-0.1.55 → modelbase2-0.1.57}/LICENSE +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/__init__.py +3 -3
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/__init__.py +4 -4
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/algebraic_module_container.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/constant_container.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/data.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/name_container.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/reaction_container.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/utils.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/variable_container.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/__init__.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/integrator.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/mca.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/model.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/simulator.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/py.typed +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/types.py +1 -1
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/utils/__init__.py +0 -0
- {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/utils/plotting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "modelbase2"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.57"
|
4
4
|
description = "A package to build metabolic models"
|
5
5
|
license = "GPL-3.0-or-later"
|
6
6
|
authors = ["Marvin van Aalst <marvin.vanaalst@gmail.com>", "Oliver Ebenhöh <oliver.ebenhoeh@hhu.de>"]
|
@@ -78,7 +78,7 @@ disallow_untyped_defs = true
|
|
78
78
|
exclude = "tests/*.py"
|
79
79
|
|
80
80
|
[tool.pylint.messages_control]
|
81
|
-
max-line-length =
|
81
|
+
max-line-length = 100
|
82
82
|
disable = [
|
83
83
|
"no-self-use",
|
84
84
|
"too-many-instance-attributes",
|
File without changes
|
@@ -2,14 +2,14 @@ from __future__ import annotations
|
|
2
2
|
|
3
3
|
__all__ = [
|
4
4
|
"AlgebraicModule",
|
5
|
+
"Assimulo",
|
5
6
|
"Constant",
|
6
7
|
"DerivedConstant",
|
7
8
|
"DerivedStoichiometry",
|
8
|
-
"Reaction",
|
9
|
-
"Variable",
|
10
|
-
"Assimulo",
|
11
9
|
"Model",
|
10
|
+
"Reaction",
|
12
11
|
"Simulator",
|
12
|
+
"Variable",
|
13
13
|
"mca",
|
14
14
|
]
|
15
15
|
|
@@ -1,16 +1,16 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
3
|
__all__ = [
|
4
|
-
"AlgebraicModuleContainer",
|
5
|
-
"ConstantContainer",
|
6
4
|
"AlgebraicModule",
|
5
|
+
"AlgebraicModuleContainer",
|
7
6
|
"Constant",
|
7
|
+
"ConstantContainer",
|
8
8
|
"DerivedConstant",
|
9
9
|
"DerivedStoichiometry",
|
10
|
-
"Reaction",
|
11
|
-
"Variable",
|
12
10
|
"NameContainer",
|
11
|
+
"Reaction",
|
13
12
|
"ReactionContainer",
|
13
|
+
"Variable",
|
14
14
|
"VariableContainer",
|
15
15
|
]
|
16
16
|
|
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
|
File without changes
|
File without changes
|