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.
Files changed (22) hide show
  1. {modelbase2-0.1.55 → modelbase2-0.1.57}/PKG-INFO +1 -1
  2. {modelbase2-0.1.55 → modelbase2-0.1.57}/pyproject.toml +2 -2
  3. {modelbase2-0.1.55 → modelbase2-0.1.57}/setup.py +1 -1
  4. {modelbase2-0.1.55 → modelbase2-0.1.57}/LICENSE +0 -0
  5. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/__init__.py +3 -3
  6. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/__init__.py +4 -4
  7. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/algebraic_module_container.py +0 -0
  8. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/constant_container.py +0 -0
  9. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/data.py +0 -0
  10. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/name_container.py +0 -0
  11. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/reaction_container.py +0 -0
  12. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/utils.py +0 -0
  13. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/core/variable_container.py +0 -0
  14. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/__init__.py +0 -0
  15. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/integrator.py +0 -0
  16. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/mca.py +0 -0
  17. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/model.py +0 -0
  18. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/ode/simulator.py +0 -0
  19. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/py.typed +0 -0
  20. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/types.py +1 -1
  21. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/utils/__init__.py +0 -0
  22. {modelbase2-0.1.55 → modelbase2-0.1.57}/src/modelbase2/utils/plotting.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: modelbase2
3
- Version: 0.1.55
3
+ Version: 0.1.57
4
4
  Summary: A package to build metabolic models
5
5
  Home-page: https://gitlab.com/qtb-hhu/modelbase-software
6
6
  License: GPL-3.0-or-later
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "modelbase2"
3
- version = "0.1.55"
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 = 120
81
+ max-line-length = 100
82
82
  disable = [
83
83
  "no-self-use",
84
84
  "too-many-instance-attributes",
@@ -25,7 +25,7 @@ install_requires = \
25
25
 
26
26
  setup_kwargs = {
27
27
  'name': 'modelbase2',
28
- 'version': '0.1.55',
28
+ 'version': '0.1.57',
29
29
  'description': 'A package to build metabolic models',
30
30
  'long_description': 'None',
31
31
  'author': 'Marvin van Aalst',
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
 
@@ -1,8 +1,8 @@
1
1
  from __future__ import annotations
2
2
 
3
3
  __all__ = [
4
- "Axes",
5
4
  "Array",
5
+ "Axes",
6
6
  "DataFrame",
7
7
  "Figure",
8
8
  "Series",