-
Notifications
You must be signed in to change notification settings - Fork 494
/
setup.py
45 lines (39 loc) · 1.26 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
41
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" distribute- and pip-enabled setup.py """
import setuptools
import sys
import sparkdl
exclude_packages = ('tests', 'tests.*')
if '--with-tests' in sys.argv:
index = sys.argv.index('--with-tests')
sys.argv.pop(index)
exclude_packages = ()
setuptools.setup(
name='sparkdl',
version=sparkdl.__version__,
packages=setuptools.find_packages(exclude=exclude_packages),
url="https://github.com/databricks/spark-deep-learning",
author="Weichen Xu",
author_email="weichen.xu@databricks.com",
description="Deep Learning Pipelines for Apache Spark",
long_description="",
classifiers=[
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
],
platforms=["Linux"],
license="BSD",
keywords="spark deep learning horovod model distributed training",
install_requires=[],
extras_require={},
tests_require=["nose", "pytest"],
zip_safe=False,
)