-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.21 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "textwiz"
authors = [
{name="Cyril Vallez", email="[email protected]"},
]
maintainers = [
{name="Cyril Vallez", email="[email protected]"},
]
description = "An even simpler way to use open-source LLMs."
keywords = ["LLM", "text-generation"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
dependencies = [
"numpy",
"pyyaml",
"packaging",
"torch>=2.2.0",
"transformers>=4.42",
"tokenizers>=0.13.3",
"sentencepiece",
"protobuf",
"tiktoken",
# maybe optional
"gradio",
"accelerate>=0.22.0",
"optimum>=1.12.0",
"bitsandbytes>=0.41.1"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "textwiz.__version__"}
# CLI interfaces
[project.scripts]
textwiz-memory = "textwiz.cli:memory_estimation_entrypoint"
[project.urls]
Homepage = "https://github.com/Cyrilvallez/TextWiz"
Issues = "https://github.com/Cyrilvallez/TextWiz/issues"
Changelog = "https://github.com/Cyrilvallez/TextWiz/blob/main/CHANGELOG.md"