forked from foundation-model-stack/foundation-model-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 2.2 KB
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
69
70
71
72
73
74
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
[project]
name = "ibm-fms"
dynamic = ["version"]
description = "Foundation Model Stack is a collection of components for development, inference, training, and tuning of foundation models leveraging PyTorch native components."
authors = [
{name = "Antoni Viros i Martin", email= "aviros@ibm.com"},
{name = "Davis Wertheimer", email= "Davis.Wertheimer@ibm.com"},
{name = "Joshua Rosenkranz", email = "jmrosenk@us.ibm.com"},
{name = "Raghu Kiran Ganti", email= "rganti@us.ibm.com"},
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.11,<3.13"
keywords = ['ibm-fms']
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"torch >= 2.5.1",
"transformers==4.57.6",
]
[project.optional-dependencies]
hf = ["transformers==4.57.6"]
dev = [
"mypy==1.15.0",
"mypy-extensions==1.0.0",
"pytest>=9.0.2",
"sentencepiece==0.2.0",
"pyarrow-stubs==17.16",
"types-requests==2.32.0.20241016",
"tqdm==4.67.1",
"types-tqdm",
"lm_eval==0.4.7",
"peft==0.14.0",
"fms-model-optimizer>=0.8.1",
]
[tool.setuptools_scm]
version_file = "fms/_version.py"
[tool.setuptools.packages.find]
where = [""]
include = ["fms", "fms*", "tests/models*"]
[project.urls]
Homepage = "https://github.com/foundation-model-stack/foundation-model-stack"
Repository = "https://github.com/foundation-model-stack/foundation-model-stack"
Issues = "https://github.com/foundation-model-stack/foundation-model-stack/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = ["--import-mode=importlib"]