forked from spcl/graph-of-thoughts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "graph_of_thoughts"
version = "0.0.3"
authors = [
{ name="Maciej Besta", email="[email protected]" },
{ name="Nils Blach", email="[email protected]" },
{ name="Ales Kubicek", email="[email protected]" },
{ name="Robert Gerstenberger", email="[email protected]" },
]
description = "Python package for Graph of Thoughts that enables solving elaborate problems with Large Language Models"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"backoff>=2.2.1,<3.0.0",
"openai>=1.0.0,<2.0.0",
"matplotlib>=3.7.1,<4.0.0",
"numpy>=1.24.3,<2.0.0",
"pandas>=2.0.3,<3.0.0",
"sympy>=1.12,<2.0",
"torch>=2.0.1,<3.0.0",
"transformers>=4.31.0,<5.0.0",
"accelerate>=0.21.0,<1.0.0",
"bitsandbytes>=0.41.0,<1.0.0",
"scipy>=1.10.1,<2.0.0",
]
[project.urls]
Homepage = "https://github.com/spcl/graph-of-thoughts"
[project.scripts]