|
1 | 1 | from setuptools import setup |
2 | 2 |
|
| 3 | +with open('README.md') as f: |
| 4 | + long_description = f.read() |
| 5 | + |
3 | 6 | setup( |
4 | | - name = 'tensorflowonspark', |
5 | | - packages = ['tensorflowonspark'], |
6 | | - version = '1.4.0', |
7 | | - description = 'Deep learning with TensorFlow on Apache Spark clusters', |
8 | | - author = 'Yahoo, Inc.', |
9 | | - url = 'https://github.com/yahoo/TensorFlowOnSpark', |
10 | | - keywords = ['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'], |
11 | | - install_requires = ['tensorflow'], |
12 | | - license = 'Apache 2.0', |
13 | | - classifiers = [ |
| 7 | + name='tensorflowonspark', |
| 8 | + packages=['tensorflowonspark'], |
| 9 | + version='1.4.1', |
| 10 | + description='Deep learning with TensorFlow on Apache Spark clusters', |
| 11 | + long_description=long_description, |
| 12 | + long_description_content_type='text/markdown', |
| 13 | + author='Yahoo, Inc.', |
| 14 | + url='https://github.com/yahoo/TensorFlowOnSpark', |
| 15 | + keywords=['tensorflowonspark', 'tensorflow', 'spark', 'machine learning', 'yahoo'], |
| 16 | + install_requires=['tensorflow'], |
| 17 | + license='Apache 2.0', |
| 18 | + classifiers=[ |
14 | 19 | 'Development Status :: 4 - Beta', |
15 | 20 | 'Intended Audience :: Developers', |
16 | 21 | 'Intended Audience :: Science/Research', |
|
0 commit comments