Skip to content

Commit 815d240

Browse files
committed
updated documentation
1 parent 5587fe0 commit 815d240

File tree

4 files changed

+25
-17
lines changed

4 files changed

+25
-17
lines changed

CONTRIBUTORS

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
1-
StochPy Stochastic modeling in Python
2-
=====================================
1+
# StochPy Stochastic modeling in Python
32

4-
Copyright (c) 2011-2016, Timo R. Maarleveld, Brett G. Olivier, and Frank J. Bruggeman
3+
4+
Copyright (c) 2011-2021, Timo R. Maarleveld, Brett G. Olivier, and Frank J. Bruggeman
55
All rights reserved.
66

77
StochPy is distributed under a BSD style licence.
88

99
File releases: http://sourceforge.net/projects/stochpy
1010
Source code: https://github.com/SystemsBioinformatics/stochpy
1111

12-
Author information
13-
------------------
12+
## Author information
1413

1514
Timo R. Maarleveld, Brett G. Olivier and Frank J. Bruggeman
1615
Centrum Wiskunde en Informatica, Amsterdam, Netherlands
17-
VU University, Amsterdam, Netherlands
16+
Vrije Universiteit Amsterdam, Amsterdam, Netherlands
17+
18+
## Major code contributors to the StochPy codebase
19+
20+
- Brett G. Olivier (@bgoli)
21+
- Catharina Meyer
1822

19-
Contributors to StochPy code
20-
----------------------------
23+
## GitHub contributions (per release):
2124

22-
- Brett G. Olivier,
23-
- Catharina Meyer
25+
### Release 2.4
26+
Thanks for the contributions @zesloth, @enricozb and @developerfab
2427

2528
Please let us know if you feel you should be included in this list.
2629

27-
Last updated: 2016-09-29
30+
Last updated: 2021-04-30

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ The following software is required before installing StochPy (see user guide for
2323
- [libxml2](http://xmlsoft.org) (optional)
2424
- [mpmath](http://mpmath.org) (optional)
2525

26-
Install the StochPy dependencies with PIP using the following command (in your StochPy Python environment):
26+
Install the StochPy dependencies with PIP using the following command (in your StochPy Python virtual environment):
2727
```bash
28-
pip install numpy scipy matplotlib python-libsbml mpmath lxml
28+
pip install numpy scipy matplotlib python-libsbml mpmath lxml jedi==0.17.2 ipython
2929
```
3030

3131
#### Linux/MAC OS/Cygwin

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,26 @@
3939
url = "http://stochpy.sourceforge.net",
4040
download_url = "http://stochpy.sourceforge.net/download.html",
4141
license = " BSD License ",
42-
keywords = " Bioinformatics, Computational Systems Biology, Bioinformatics, Modeling, Simulation, Stochastic Simulation Algorithms, Stochastic",
42+
keywords = " Bioinformatics, Computational Systems Biology, Bioinformatics, Modeling, Simulation, Stochastic Simulation Algorithms, Stochastic",
4343
zip_safe = False,
4444
requires = ['NumPy'],
4545
platforms = ["Windows", "Linux","Mac OS-X"],#, "Solaris", "", "Unix"],
4646
classifiers = [
47-
'Development Status :: 4 - Beta',
47+
'Development Status :: 5 - Production/Stable',
48+
'Development Status :: 6 - Mature',
4849
'Environment :: Console',
4950
'Intended Audience :: End Users/Desktop',
5051
'Intended Audience :: Science/Research',
5152
'License :: OSI Approved :: BSD License',
5253
'Natural Language :: English',
53-
'Operating System :: OS Independent',
54+
'Operating System :: OS Independent',
5455
'Programming Language :: Python :: 2.6',
5556
'Programming Language :: Python :: 2.7',
5657
'Programming Language :: Python :: 3.4',
58+
'Programming Language :: Python :: 3.6',
59+
'Programming Language :: Python :: 3.7',
60+
'Programming Language :: Python :: 3.8',
61+
'Programming Language :: Python :: 3.9',
5762
'Topic :: Scientific/Engineering :: Bio-Informatics',
5863
'Topic :: Scientific/Engineering :: Simulations'],
5964
packages = mypackages,

stochpy/modules/Analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
Written by TR Maarleveld, Amsterdam, The Netherlands
99
10-
Last Change: August 05, 2015
10+
1111
"""
1212

1313
from __future__ import division, print_function, absolute_import

0 commit comments

Comments
 (0)