-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
68 lines (61 loc) · 1.74 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.black]
line-length = 119
preview = true
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 119
include_trailing_comma = true
multi_line_output = 3
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "vigogne"
authors = [
{name = "Bofeng Huanng"},
]
version = "0.3.0"
description = "Vigogne: A toolkit for training, serving, and evaluating French instruction-following models."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"accelerate@git+https://github.com/huggingface/accelerate.git",
"appdirs",
"bitsandbytes",
"datasets",
"einops",
"fire",
"loralib",
"peft@git+https://github.com/huggingface/peft.git",
"gradio",
"openai",
"pydantic",
"sentencepiece",
"scipy",
"tenacity",
"tensorboardX",
"tiktoken",
"torch",
"transformers@git+https://github.com/huggingface/transformers.git",
"wandb",
]
[project.optional-dependencies]
dev = ["black==23.3.0", "pylint==2.8.2"]
[project.urls]
"Homepage" = "https://github.com/bofenghuang/vigogne"
"Bug Tracker" = "https://github.com/bofenghuang/vigogne/issues"
[tool.setuptools.packages.find]
exclude = ["assets*", "wandb", "dist*", "scripts*", "tests*", "tmp*"]
[tool.wheel]
exclude = ["assets*", "wandb", "dist*", "scripts*", "tests*", "tmp*"]