-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
41 lines (39 loc) · 995 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "simplifine-alpha"
version = "0.0.81"
authors = [
{ name="Ali Kavoosi, Raveen Kariyawasam", email="founders@simplfine.com"}
]
description = "An easy to use, open-source LLM finetuning library that handles all the complexities of the process for you."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"accelerate",
"datasets",
"deepspeed",
"numpy",
"openai",
"peft",
"PyPDF2",
"requests",
"scikit_learn",
"sentence_transformers",
"torch",
"tqdm",
"transformers",
"trl",
"wandb",
"requests",
"setuptools",
]
[project.urls]
Homepage = "https://github.com/simplifine-llm/Simplifine"
Issues = "https://github.com/simplifine-llm/Simplifine/issues"