-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
65 lines (58 loc) · 1.44 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
[tool.poetry]
name = "autoemulate"
version = "0.2.0"
description = "A python package for semi-automated emulation"
license = "MIT"
authors = ["Martin Stoffel <[email protected]>",
"Kalle Westerling <[email protected]>",
"Bryan Li <[email protected]>",
"Max Balmus <[email protected]>",
"Sophie Arana <[email protected]>",
"Eric Daub <[email protected]>",
"Steve Niederer <[email protected]>"]
readme = "README.md"
include = ["misc/AE_logo_final.png"]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
mogp-emulator = "^0.7.2"
matplotlib = "^3.7.2"
scikit-learn = "^1.3.0"
pandas = "^2.1"
torch = "^2.1.0"
skorch = "^0.15.0"
scipy = "^1.11.3"
numpy = "^1.24"
joblib = "^1.3.2"
tqdm = "^4.66.2"
iprogress = "^0.4"
lightgbm = "^4.3.0"
ipywidgets = "^8.1.2"
gpytorch = "^1.12"
salib = "^1.5.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.0"
pytest = "^7.4.0"
sphinx = "^7.2.6"
myst-parser = "^2.0.0"
furo = "^2023.9.10"
sphinx-copybutton = "^0.5.2"
sphinx-autodoc-typehints = "^1.24.0"
black = "^23.10.1"
pre-commit = "^3.5.0"
jupyter-book = "^1.0.0"
pytest-cov = "^4.1.0"
coverage = "^7.6.4"
plotnine = "^0.13.6"
[tool.poetry.extras]
docs = ["furo",
"sphinx-copybutton",
"sphinx-autodoc-typehints"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
relative_files = true
source = [
".",
"/tmp"
]