-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
65 lines (53 loc) · 1.37 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "hfppl"
version = "0.0.0"
description = "Probabilistic programming with HuggingFace Transformer models."
authors = [
"Alex Lew <[email protected]>",
"Gabriel Grand <[email protected]>",
"Ben LeBrun <[email protected]>",
]
license = "MIT"
readme = "README.md"
packages = [{include = "hfppl"}]
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.1.2"
numpy = "^1.26.2"
scipy = "^1.11.4"
protobuf = "^5.27.2"
nltk = {version = "^3.8.1", optional = true}
pre-commit = "^3.7.1"
ipykernel = "^6.29.5"
genlm-backend = "^0.0.1"
[tool.poetry.group.vllm]
optional = true
[tool.poetry.group.vllm.dependencies]
vllm = "^0.6.6"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-benchmark = "*"
pytest-cov = "*"
pre-commit = "^3.6.0"
ruff = "^0.9.9"
jupyterlab = "^4.0.9"
ipywidgets = "^8.1.1"
matplotlib = "^3.9.1"
seaborn = "^0.13.2"
[tool.poetry.group.yelp.dependencies]
yake = "^0.4.8"
datasets = "^2.20.0"
[tool.poetry.group.collie.dependencies]
collie-bench = "^0.1.0"
nltk = "^3.8.1"
dill = "^0.3.8"
evaluate = "^0.4.2"
[tool.poetry.extras]
examples=["nltk"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry-dynamic-versioning]
enable = true