-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (39 loc) · 1.35 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import PEP420PackageFinder, setup
exec(open("src/neuronx_distributed_inference/_version.py").read())
setup(
name="neuronx-distributed-inference",
version=__version__, # noqa F821
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary 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",
"transformers==4.45.*",
"sentencepiece",
"torchvision",
"pillow",
"blobfile",
],
tests_require=["pytest", "pytest-forked"],
python_requires=">=3.7",
package_dir={"": "src"},
entry_points={
"console_scripts": [
"inference_demo=neuronx_distributed_inference.inference_demo:main",
],
},
)