forked from yahoo/TensorFlowOnSpark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 990 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='tensorflowonspark',
packages=['tensorflowonspark'],
version='2.2.1',
description='Deep learning with TensorFlow on Apache Spark clusters',
long_description=long_description,
long_description_content_type='text/markdown',
author='Yahoo, Inc.',
url='https://github.com/yahoo/TensorFlowOnSpark',
keywords=['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'],
install_requires=['packaging'],
license='Apache 2.0',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)