-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 895 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
[tool.poetry]
name = "battleship"
version = "0.1.0"
description = ""
authors = ["Gabe Grand <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
numpy = "^1.26.1"
Cython = "^3.0.5"
transformers = "^4.30.0"
torch = "^2.1.0"
pandas = "^2.1.2"
accelerate = "^0.24.1"
bitsandbytes = "^0.41.1"
scipy = "^1.11.3"
optimum = "^1.14.0"
matplotlib = "^3.8.1"
lark = "^1.1.8"
nltk = "^3.8.1"
[tool.poetry.group.repos.dependencies]
# expected-information-gain = { path = "./EIG/", develop = true }
# synchromesh = {path = "../synchromesh", develop = true}
# hfppl = {path = "./hfppl", develop = true}
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
jupyterlab = "^4.0.7"
pre-commit = "^3.5.0"
pytest = "^7.4.3"
ipywidgets = "^8.1.1"
seaborn = "^0.13.0"
tabulate = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"