-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 1019 Bytes
/
setup.py
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
from setuptools import PEP420PackageFinder, setup
exec(open("src/neuronx_distributed_training/_version.py").read())
setup(
name="neuronx-distributed-training",
version=__version__, #noqa F821
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="aws neuron",
packages=PEP420PackageFinder.find(where="src"),
package_data={"": []},
install_requires=["neuronx_distributed"],
python_requires=">=3.7",
package_dir={"": "src"},
)