Updating the descriptions for TensorFlow.
authorAmit Patankar <amitpatankar@google.com>
Fri, 11 May 2018 19:27:40 +0000 (12:27 -0700)
committerTensorFlower Gardener <gardener@tensorflow.org>
Fri, 11 May 2018 19:30:35 +0000 (12:30 -0700)
PiperOrigin-RevId: 196291844

tensorflow/tools/pip_package/setup.py

index 937d41c..f7385e5 100644 (file)
@@ -33,6 +33,21 @@ from setuptools.dist import Distribution
 # 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',
@@ -214,8 +229,8 @@ headers = (list(find_files('*.h', 'tensorflow/core')) +
 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',
@@ -261,4 +276,5 @@ setup(
         'Topic :: Software Development :: Libraries :: Python Modules',
     ],
     license='Apache 2.0',
-    keywords='tensorflow tensor machine learning',)
+    keywords='tensorflow tensor machine learning',
+)