-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
43 lines (38 loc) · 905 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dendron"
version = "0.1.5"
authors = [
{ name = "Richard Kelley" },
]
license = {text = "BSD License"}
description = "A library for working with LLMs and behavior trees."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"torch>=2.0.0",
"transformers>=4.36.2",
"accelerate>=0.26.1",
"bitsandbytes>=0.42.0",
"sentencepiece>=0.1.99",
"protobuf>=4.25.2",
"hflm>=0.0.8",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.pytest.ini_options]
pythonpath = "."
addopts = [
"--import-mode=importlib",
]
[project.urls]
Homepage = "https://github.com/RichardKelley/dendron"