-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 990 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "applyllm"
version = "0.0.9.dev0"
authors = [
{ name="Yingding Wang", email="[email protected]" },
]
description = "A python package to apply opensource LLM in local CUDA environment"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'langchain >= 0.1.0',
'transformers >= 4.36.2',
'torch >= 2.1.2',
'pydantic >= 1.10.13',
'boto3 >= 1.29.0',
'mlflow >= 2.10.0',
'bitsandbytes >= 0.42.0',
'pypdf >= 3.15.5',
'accelerate >= 0.26.1',
'psycopg[binary] >= 3.1.16',
'SQLAlchemy >= 2.0.24',
'unstructured >= 0.11.0',
'sentence-transformers >= 2.2.2',
'docarray >= 0.39.1',
]
[project.urls]
Homepage = "https://github.com/yingding/applyllm"
Issues = "https://github.com/yingding/applyllm/issues"
[tool.setuptools.packages]
find = {}