-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (38 loc) · 1016 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
[tool.poetry]
name = "function-sampler"
packages = [
{ include = "function_sampler" },
]
version = "0.2.1"
description = "Function calling Logit Sampler"
authors = ["Nathan Hoos <thwackyy.y@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.dependencies]
python = "^3.9"
transformers = "^4.38.2"
pydantic = "^2.6.3"
diskcache = "^5.6.3"
cloudpickle = "^3.0.0"
datasets = "^2.18.0"
referencing = "^0.33.0"
jsonref = "^1.1.0"
torch = "^2.2.2"
joblib = "^1.3.2"
jsonschema = "^4.21.1"
interegular = "0.3.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.1"
pre-commit = "^3.7.0"
setuptools-rust = "^1.9.0"
[build-system]
requires = ["setuptools>=69.5.1", "wheel", "setuptools-rust>=1.9.0", "tomlkit>=0.12.5"]
build-backend = "setuptools.build_meta"
[lib]
name = "fsm_utils"
crate-type = ["cdylib"]