-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 979 Bytes
/
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
[tool.poetry]
name = "hazelnut"
version = "0.1.0"
description = ""
authors = ["Ethan Brooks <[email protected]>", "Yikai Fan <[email protected]>", "Zachary Eichenberger <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.22"
stable-baselines3 = "^2.0.0"
gym = {version = "^0.26"}
torch-geometric = "^2.3"
PyYAML = "^6.0"
ray = { version = "^2.0.0", extras = ["tune"] }
torch = {version = "^2.1.0+cu121", source = "pytorch"}
gitpython = "^3.1.40"
transformers = "^4.34.1"
wandb = "^0.15.12"
[tool.poetry.dev-dependencies]
ipython = "^8.0.1"
ipdb = "^0.13.9"
matplotlib = ">3.7"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.vscode
| \__pycache__
| \venv
| _build
)/
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"