-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (33 loc) · 925 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
27
28
29
30
31
32
33
34
import os
from setuptools import setup, find_packages
setup(
name="distml",
version=os.environ.get("VERSION"),
author="The DistML Authors",
author_email="",
description="DistML is a runtime libraray for distributed "
"deep learning training.",
long_description="DistML is a Ray extension library to support "
"large-scale distributed ML training on heterogeneous "
"multi-node multi-GPU clusters.",
url="https://github.com/ray-project/distml",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
install_requires=[
"ray",
"pandas",
"tabulate",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"pydocstyle",
"prospector",
]
},
packages=find_packages(),
python_requires=">=3.6",
)