-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (78 loc) · 2.34 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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/emd_falsify/_version.py"
[project.urls]
"Documentation" = "https://alcrene.github.io/emd-falsify/"
"Bug Tracker" = "https://github.com/alcrene/emd-falsify/issues"
"Source" = "https://github.com/alcrene/emd-falsify"
[project]
name = "emd-falsify"
authors = [
{name = "Alexandre René", email="[email protected]"},
]
description = "Original implementation of the EMD (empirical model discrepancy) model comparison criterion"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MPL 2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
]
keywords = [
"empirical model discrepancy",
"bayes factor",
"inference",
"model comparison",
"bayesian",
]
dependencies = [
"more-itertools",
"numpy",
"scipy>=1.7", # integrate.simpson changed name (used to be 'simps')
"pydantic>=1.8.2",
"tqdm",
"joblib",
# joblib is used for on-disk caching of calculations used in calibration plots
"scityping",
"valconfig>=0.1.2",
]
dynamic = ["version"]
[project.optional-dependencies]
## Development dependencies
test = ["pytest"]
## Dependencies of the `viz` utilities module ##
viz = ["pandas", "matplotlib", "seaborn", "holoviews"]
## Executing notebooks and building “code browser” pages ##
doc = [
# Everything from viz
"pandas",
"matplotlib",
"seaborn",
"holoviews",
"addict",
"jupyter-book>=0.14",
"sphinx-proof",
"jupytext",
"ipykernel",
"holoviews",
"bokeh",
"jupyter_bokeh",
# For bokeh export to png (also used by holoviews)
"selenium",
"phantomjs",
"pillow",
## Needed only for `tasks` notebook (which is not executable as a notebook)
#"smttask>=0.2.0-rc3",
# For pushing Jupyter book to Github Pages
"ghp-import",
]