# result for pip.
_VERSION = '1.8.0-rc1'
+_SHORT_DESCRIPTION = ('TensorFlow is an open source machine learning framework '
+ 'for everyone.')
+
+_LONG_DESCRIPTION = ('TensorFlow is an open source software library for high '
+ 'performance numerical computation. Its flexible '
+ 'architecture allows easy deployment of computation across'
+ ' a variety of platforms (CPUs, GPUs, TPUs), and from '
+ 'desktops to clusters of servers to mobile and edge '
+ 'devices. Originally developed by researchers and '
+ 'engineers from the Google Brain team within Google\'s AI '
+ 'organization, it comes with strong support for machine '
+ 'learning and deep learning and the flexible numerical '
+ 'computation core is used across many other scientific '
+ 'domains.')
+
REQUIRED_PACKAGES = [
'absl-py >= 0.1.6',
'astor >= 0.6.0',
setup(
name=project_name,
version=_VERSION.replace('-', ''),
- description='TensorFlow helps the tensors flow',
- long_description='',
+ description=_SHORT_DESCRIPTION,
+ long_description=_LONG_DESCRIPTION,
url='https://www.tensorflow.org/',
author='Google Inc.',
author_email='opensource@google.com',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='Apache 2.0',
- keywords='tensorflow tensor machine learning',)
+ keywords='tensorflow tensor machine learning',
+)