Skip to content

Commit 09b0fc9

Browse files
authored
Merge pull request tensorflow#115 from tensorflow/add_long
Added long description.
2 parents 82bc302 + 1e7c177 commit 09b0fc9

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

release/setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,17 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
# ==============================================================================
15-
"""Setup for pip package."""
15+
"""TensorFlow Quantum adds qauntum computing primitives to TensorFlow.
16+
17+
TensorFlow Quantum is an open source library for high performance batch
18+
quantum computation on quantum simulators and quantum computers. The goal
19+
of TensorFlow Quantum is to help researchers develop a deeper understanding
20+
of quantum data and quantum systems via hybrid models.
21+
22+
TensorFlow Quantum was created in an ongoing collaboration between the
23+
University of Waterloo and the Quantum AI team at Google along with help from
24+
many other contributors within Google.
25+
"""
1626
from __future__ import absolute_import
1727
from __future__ import division
1828
from __future__ import print_function
@@ -26,6 +36,9 @@
2636
from setuptools.command.install import install
2737

2838

39+
DOCLINES = __doc__.split('\n')
40+
41+
2942
class InstallPlatlib(install):
3043
"""Workaround so .so files in generated wheels
3144
can be seen by auditwheel."""
@@ -62,6 +75,7 @@ def has_ext_modules(self):
6275
version='0.2.0',
6376
description=
6477
'TensorFlow Quantum is a library for hybrid quantum-classical machine learning.',
78+
long_description='\n'.join(DOCLINES[2:]),
6579
author='Google Inc.',
6680
author_email='[email protected]',
6781
url='https://github.com/tensorflow/quantum/',

0 commit comments

Comments
 (0)