-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
99 lines (90 loc) · 2.55 KB
/
pyproject.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python',
'meson>=1.2.3',
'ninja',
'numpy>=2.0.0',
]
[tool.meson-python.args]
#setup = ['-Dc_link_args=-lquadmath']
compile = ['-j4']
#install = []
#dist = []
[project]
name = 'pysces'
dependencies = [
'numpy>=1.23.5',
'matplotlib',
'scipy'
]
dynamic = ['version']
description = 'The Python Simulator for Cellular Systems - simulation and analysis tools for modelling biological systems'
readme = 'DESCRIPTION.md'
requires-python = '>=3.9'
license = {text = 'BSD 3-Clause'}
authors = [
{name = 'Brett Olivier', email = '[email protected]'},
{name = 'Johann Rohwer', email = '[email protected]'},
]
maintainers = [
{name = 'Brett Olivier', email = '[email protected]'},
{name = 'Johann Rohwer', email = '[email protected]'},
]
keywords = [
'computational systems biology',
'modelling',
'simulation',
'systems biology',
]
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 :: Fortran',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
]
[project.optional-dependencies]
parscan = ['ipyparallel', 'multiprocessing_on_dill']
cvode = ['assimulo']
sbml = ['python_libsbml']
all = [
'ipyparallel',
'multiprocessing_on_dill',
'assimulo',
'python_libsbml'
]
[project.urls]
homepage = "https://pysces.github.io"
documentation = "https://pyscesdocs.readthedocs.io"
source = "https://github.com/PySCeS/pysces"
download = "https://github.com/PySCeS/pysces/releases"
tracker = "https://github.com/PySCeS/pysces/issues"
[tool.cibuildwheel]
build = "cp312-* cp311-* cp310-* cp39-*"
skip = "*musllinux* pp*"
build-verbosity = "3"
test-command = "python -s -c \"import pysces; pysces.test(3)\""
build-frontend="pip"
[tool.cibuildwheel.linux]
archs = "x86_64"
manylinux-x86_64-image = "manylinux2014"
[tool.cibuildwheel.macos]
archs = "x86_64"
before-build = [
"sudo ln -sf /usr/local/bin/gfortran-11 /usr/local/bin/gfortran",
"sudo mkdir -p /usr/local/gfortran",
"sudo ln -sf /usr/local/Cellar/gcc@11/*/lib/gcc/11 /usr/local/gfortran/lib",
"gfortran --version",
]
[tool.cibuildwheel.windows]
archs = "AMD64"
[tool.cibuildwheel.windows.environment]
PATH = "c:\\\\rtools40\\\\ucrt64\\\\bin;c:\\\\rtools40\\\\usr\\\\bin;$PATH"