-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 749 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
[tool.poetry]
name = "soft_optim"
version = "0.1.0"
description = "Soft Optimization Research"
authors = [
"Jeremy Gillen",
"Alan Cooney<41682961+alan-cooney@users.noreply.github.com>",
"Nicky Pochinkov"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.23"
numexpr = "^2.7.0"
torch = "^1.13.0"
trlx = {git = "https://github.com/CarperAI/trlx.git"} # , rev = "refs/pull/218/merge"}
bayesian-optimization = "^1.4.2"
ray = {extras = ["tune"], version = "^2.2.0"}
tensorboardx = "^2.5.1"
tensorboard = "^2.11.2"
dict-deep = "^4.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
mypy = "^0.991"
autopep8 = "^2.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"