forked from bayesflow-org/bayesflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (54 loc) · 1.43 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
[metadata]
name = bayesflow
version = attr: bayesflow.version.__version__
description = "Amortizing Bayesian Inference With Neural Networks"
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/stefanradev93/bayesflow
project_urls =
Bug Tracker = https://github.com/stefanradev93/bayesflow/issues
Documentation = https://bayesflow.readthedocs.io
Changelog = https://github.com/stefanradev93/bayesflow/blob/future/CHANGELOG.rst
author = The BayesFlow Developers
maintainer = Stefan T. Radev
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
keywords =
amortized Bayesian inference
invertible neural networks
simulation-based inference
approximate Bayesian computation
model comparison
[options]
python_requires = >=3.8
packages = find:
install_requires =
h5py >= 3.7
numpy >= 1.23
pandas >= 1.4
scikit-learn >= 1.0
aesara >= 2.8
scipy >= 1.8
seaborn >= 0.11
tqdm >= 4.65
matplotlib >= 3.5
[options.extras_require]
testing =
flake8 >= 3.9
tox >= 3.24
pytest >= 6.0
pytest-cov >= 2.10.0
mypy >= 0.910
docs =
sphinx >= 5.1.0
sphinx-book-theme>=0.2.0
numpydoc >= 1.2.1
myst_nb >= 0.13.1
sphinx_design >= 0.4.1
[flake8]
max-line-length = 120