-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1011 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 1011 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "applyllm"
version = "0.0.10"
authors = [
{ name="Yingding Wang", email="yingdingwang@yahoo.de" },
]
description = "A python package to apply opensource LLM in local CUDA environment"
readme = "QuickStart.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'langchain >= 1.2.15',
'transformers >= 5.5.0',
'torch >= 2.11.0',
'pydantic >= 2.12.5',
'boto3 >= 1.42.9',
'mlflow >= 3.7.0',
'bitsandbytes >= 0.49.2',
'pypdf >= 6.4.2',
'accelerate >= 1.13.0',
'psycopg[binary] >= 3.1.16',
'SQLAlchemy >= 2.0.24',
'unstructured >= 0.18.21',
'sentence-transformers >= 5.2.0',
'docarray >= 0.41.0',
]
[project.urls]
Homepage = "https://github.com/yingding/applyllm"
Issues = "https://github.com/yingding/applyllm/issues"
[tool.setuptools.packages]
find = {}