-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 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
33
34
35
36
[project]
name = "thompsonsampling"
version = "0.1.0"
description = ""
authors = [
{name = "ToennisStef",email = "stefan.toennis@gmx.de"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy (>=2.2.3,<3.0.0)",
"torch (>=2.6.0,<3.0.0)",
"torchvision (>=0.21.0,<0.22.0)",
"torchaudio (>=2.6.0,<3.0.0)",
"jupyter (>=1.1.1,<2.0.0)",
"botorch (>=0.13.0,<0.14.0)",
"ax-platform (>=0.5.0,<0.6.0)",
"matplotlib (>=3.10.1,<4.0.0)",
]
[tool.poetry]
packages = [{include = "thompsonsampling", from = "src"}]
[tool.poetry.dependencies]
torch = {version = ">=2.6.0,<3.0.0", source = "pytorch"}
torchvision = {version = ">=0.21.0,<0.22.0", source = "pytorch"}
torchaudio = {version = ">=2.6.0,<3.0.0", source = "pytorch"}
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"