forked from foundation-model-stack/fms-fsdp
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 670 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import find_packages, setup
setup(
name="fms_fsdp",
version="0.0.1",
author="Linsong Chu, Davis Wertheimer, Brian Vaughan, Andrea Frittoli, Joshua Rosenkranz, Antoni Viros i Martin, Raghu Kiran Ganti",
author_email="lchu@us.ibm.com",
description="Pretraining scripts using FSDP and IBM Foundation Model Stack",
url="https://github.com/foundation-model-stack/fms-fsdp",
packages=find_packages(),
install_requires=["ibm-fms >= 0.0.3", "torch >= 2.1"],
license="Apache License 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
)