forked from ICB-DCM/pyPESTO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
166 lines (155 loc) · 3.32 KB
/
setup.cfg
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#######################
# Setup Configuration #
#######################
[metadata]
name = pypesto
version = attr: pypesto.version.__version__
description = python-based Parameter EStimation TOolbox
long_description = file: README.md
long_description_content_type = text/markdown
# URLs
url = https://github.com/icb-dcm/pypesto
download_url = https://github.com/icb-dcm/pypesto/releases
project_urls =
Bug Tracker = https://github.com/icb-dcm/pypesto/issues
Documentation = https://pypesto.readthedocs.io
Changelog = https://pypesto.readthedocs.io/en/latest/changelog.html
# Author information
author = The pyPESTO developers
author_email = [email protected],[email protected]
maintainer = Yannik Schaelte, Jakob Vanhoefer, Paul Jost
# License information
license = BSD-3-Clause
license_files = LICENSE
# Search tags
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
keywords =
parameter inference
optimization
sampling
profiles
ODE
AMICI
systems biology
[options]
install_requires =
numpy >= 1.19.1, != 1.24.0
scipy >= 1.5.2
pandas >= 1.5.0
cloudpickle >= 1.5.0
matplotlib >= 3.6.2
more-itertools >= 9.0.0
seaborn >= 0.11.2
h5py >= 3.1.0
tqdm >= 4.46.0
tabulate >= 0.8.10
python_requires = >=3.8
include_package_data = True
# Where is my code
packages = find:
[options.packages.find]
include = pypesto*
[options.extras_require]
all =
%(amici)s
%(petab)s
%(all_optimizers)s
%(mpi)s
%(pymc)s
%(aesara)s
%(jax)s
%(emcee)s
%(dynesty)s
%(mltools)s
%(doc)s
%(example)s
%(select)s
%(test)s
%(test_petab)s
all_optimizers =
%(ipopt)s
%(dlib)s
%(nlopt)s
%(pyswarm)s
%(cmaes)s
%(pyswarms)s
%(fides)s
amici =
amici >= 0.14.0
petab =
petab >= 0.1.14
ipopt =
ipopt
dlib =
dlib >= 19.19.0
nlopt =
nlopt >= 2.6.2
pyswarm =
pyswarm >= 0.6
cmaes =
cma >= 3.0.3
pyswarms =
pyswarms >= 1.3.0
fides =
fides >= 0.6.1
mpi =
mpi4py >= 3.0.3
pymc =
arviz >= 0.12.1
aesara >= 2.8.6
pymc >= 4.2.1
aesara =
aesara >= 2.0.5
jax =
jax >= 0.4.1
jaxlib >= 0.4.1
emcee =
emcee >= 3.0.2
dynesty =
dill >= 0.3.6
dynesty >= 2.0.3
mltools =
umap-learn[plot] >= 0.5.3
scikit-learn >= 0.24.1
julia =
julia >= 0.5.7
ipython >= 8.4.0
pygments >= 2.12.0
doc =
sphinx >= 5.1.0
nbsphinx >= 0.8.9
nbconvert >= 6.5.0
sphinx-rtd-theme >= 1.0.0
sphinx-autodoc-typehints >= 1.18.3
sphinxcontrib-bibtex >= 2.5.0
ipython >= 8.4.0
myst-parser >= 0.18.0
ipykernel >= 6.15.1
%(select)s
%(fides)s
example =
notebook >= 6.1.4
select =
# Remove when vis is moved to PEtab Select version
networkx >= 2.5.1
# End remove
petab-select >= 0.1.1
test =
pytest >= 5.4.3
pytest-cov >= 2.10.0
gitpython >= 3.1.7
pytest-rerunfailures >= 9.1.1
autograd >= 1.3
test_petab =
petabtests >= 0.0.0a6
[bdist_wheel]
# Requires Python 3
universal = False