Skip to content

Commit 5278e20

Browse files
committed
update licence, readme and version
1 parent 31a2b1a commit 5278e20

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ StochPy is a versatile stochastic modeling package which is designed for stochas
55
* File releases: http://sourceforge.net/projects/stochpy
66
* Source code: https://github.com/SystemsBioinformatics/stochpy
77

8+
StochPy is open source software distributed under the BSD 3-Clause License, see LICENSE file for more details.
9+
810
## Documentation
911

1012
Documentation can be found in the user guide (see Documentation directory or in [sourceforge](http://stochpy.sourceforge.net/html/userguide.html))
@@ -20,6 +22,11 @@ The following software is required before installing StochPy (see user guide for
2022
- [libxml2](http://xmlsoft.org) (optional)
2123
- [mpmath](http://mpmath.org) (optional)
2224

25+
Install the StochPy dependencies with PIP using the following command (in your StochPy Python environment):
26+
```bash
27+
pip install numpy matplotlib python-libsbml mpmath lxml
28+
```
29+
2330
#### Linux/MAC OS/Cygwin
2431

2532

@@ -181,7 +188,7 @@ StochPy: A Comprehensive, User-Friendly Tool for Simulating Stochastic Biologica
181188
http://dx.doi.org/10.1371/journal.pone.0079345
182189

183190
## Licence
184-
Copyright (c) 2011-2016, Timo R. Maarleveld, Brett G. Olivier, and Frank J. Bruggeman
185-
All rights reserved.
191+
Copyright (c) 2011-2021, Timo R. Maarleveld, Brett G. Olivier, and Frank J. Bruggeman
192+
Vrije Universiteit Amsterdam. All rights reserved.
186193

187-
StochPy is distributed under a BSD style licence.
194+
StochPy is open source software distributed under the BSD 3-Clause License see LICENSE file for more details.

VersionUpdates.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Updates 2.4:
2+
------------
3+
-
4+
5+
16
Updates 2.3:
27
------------
38
- improved sampling method to calculate extant cell species AND volumes (new)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from __future__ import division, print_function, absolute_import
33

44
__doc__ = "StochPy (Stochastic modeling in Python) provides several stochastic simulation algorithms to simulate (bio)chemical systems of reactions in a stochastic manner."
5-
__version__ = "2.3"
5+
__version__ = "2.4"
66

77
import os
88

stochpy/core2/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

1010
MAJOR = 2
11-
MINOR = 3
11+
MINOR = 4
1212
MICRO = 0
1313
STATUS = ''
1414

0 commit comments

Comments
 (0)