-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 973 Bytes
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
[tool.poetry]
name = "twinLab-Tutorials"
package-mode = false
description = "Tutorials for twinLab, a toolchain that makes it simple to build machine learning models with uncertainty quantification."
authors = ["digiLab Solutions Ltd. <twinlab@digilab.co.uk>"]
maintainers = ["twinLab Product Team <twinlab@digilab.co.uk>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
jupyter = "^1.0.0"
matplotlib = "^3.7.1"
numpy = [
{ version = "^1.24", python = ">=3.8,<3.9" },
{ version = "^1.26", python = ">=3.9,<3.13" },
]
pandas = [
{ version = "^1.5.3", python = ">=3.8,<3.9" },
{ version = "^2.0", python = ">=3.9,<3.13" },
]
plotly = "^5.19.0"
twinlab = "^2.21.0"
# twinlab = { path = "../client/python", develop = true }
nbdime = "^4.0.1"
[tool.poetry.group.dev.dependencies]
black = { version = "^24.4.2", extras = ["jupyter"] }
isort = "^5.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"