-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.2 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>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fm_training_estimator"
dynamic = ["version"]
authors = [
{ name="Angel Luu", email="[email protected]" },
{ name="Chander Govindarajan", email="[email protected]" },
]
description = "A package of Estimators for Large Language Model Training."
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"tox",
"pre-commit",
"transformers",
"peft",
"setuptools",
"fire",
"pandas",
"xgboost",
"scikit-learn",
"gradio",
"datasets",
"dataclass-wizard",
"uvicorn"
]
[project.urls]
Source = "https://github.com/foundation-model-stack/fm-training-estimator"
[project.optional-dependencies]
dev-docs = [
"sphinx>=4.0.2,<8.0",
"sphinx-autoapi>=2.1.0",
"sphinx-rtd-theme>=1.2.1,<2.1.0",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*", "test_*.py"]
namespaces = false
[tool.setuptools_scm]
version_file = "fm_training_estimator/_version.py"