-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.98 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
69
70
71
[build-system]
requires = [
"setuptools>=61.0.0", # This version supports newer metadata
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "fmbench"
version = "2.1.0"
description = "Benchmark performance of **any Foundation Model (FM)** deployed on **any AWS Generative AI service**, be it **Amazon SageMaker**, **Amazon Bedrock**, **Amazon EKS**, or **Amazon EC2**. The FMs could be deployed on these platforms either directly through `FMbench`, or, if they are already deployed then also they could be benchmarked through the **Bring your own endpoint** mode supported by `FMBench`."
authors = [
{ name = "Amit Arora", email = "[email protected]" },
{ name = "Madhur Prashant", email = "[email protected]" }
]
readme = "README.md"
license = { text = "MIT" }
keywords = ["benchmarking", "sagemaker", "bedrock", "bring your own endpoint", "generative-ai", "foundation-models", "llama3", "ec2", "eks"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"boto3>=1.36.6",
"datasets>=3.2.0",
"ec2-metadata>=2.14.0",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"jinja2>=3.1.5",
"jupyter>=1.1.1",
"jupyter-client>=8.6.3",
"kaleido==0.2.1",
"litellm>=1.59.8",
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.50",
"mknotebooks>=0.8.0",
"nvitop>=1.4.1",
"pandas>=2.2.3",
"papermill>=2.6.0",
"pip>=24.3.1",
"plotly>=5.24.1",
"psutil>=6.1.1",
"pydantic>=2.10.6",
"pyyaml>=6.0.2",
"ray>=2.41.0",
"requests>=2.32.3",
"sagemaker>=2.237.3",
"seaborn>=0.13.2",
"sentence-transformers>=3.4.0",
"tomark>=0.1.4",
"torch>=2.5.1",
"tqdm>=4.67.1",
"transformers>=4.48.1",
"twine>=6.1.0",
"typing-extensions>=4.12.2",
"vllm>=0.6.6.post1",
"zmq>=0.0.0",
]
[tool.setuptools]
packages = ["fmbench"]
include-package-data = true
[project.scripts]
fmbench = "fmbench.main:main"