-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (53 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
56 lines (53 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=42", "wheel", "numpy>=1.21.6"]
build-backend = "setuptools.build_meta"
[project]
name = "StochPy"
version = "2.5"
description = "StochPy (Stochastic modeling in Python) provides several stochastic simulation algorithms to simulate (bio)chemical systems of reactions in a stochastic manner."
readme = "README.md"
authors = [
{name = "T.R. Maarleveld", email = "tmd200@users.sourceforge.net"},
]
maintainers = [
{name = "Brett G. Olivier", email = "b.g.olivier@vu.nl"},
]
license = {text = "BSD License"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = ["Bioinformatics", "Computational Systems Biology", "Modeling", "Simulation", "Stochastic Simulation Algorithms", "Stochastic"]
dependencies = [
"numpy>=1.21.6",
"scipy",
"matplotlib"
]
[project.urls]
"Homepage" = "https://github.com/SystemsBioinformatics/stochpy"
"Download" = "https://github.com/SystemsBioinformatics/stochpy"
"Bug Tracker" = "https://github.com/SystemsBioinformatics/stochpy/issues"
[tool.setuptools]
package-dir = {"stochpy" = "stochpy"}
packages = [
"stochpy",
"stochpy.lib",
"stochpy.modules",
"stochpy.pscmodels",
"stochpy.implementations",
"stochpy.core2",
"stochpy.tools"
]
include-package-data = true