|
12 | 12 | # See the License for the specific language governing permissions and
|
13 | 13 | # limitations under the License.
|
14 | 14 | # ==============================================================================
|
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 | +""" |
16 | 26 | from __future__ import absolute_import
|
17 | 27 | from __future__ import division
|
18 | 28 | from __future__ import print_function
|
|
26 | 36 | from setuptools.command.install import install
|
27 | 37 |
|
28 | 38 |
|
| 39 | +DOCLINES = __doc__.split('\n') |
| 40 | + |
| 41 | + |
29 | 42 | class InstallPlatlib(install):
|
30 | 43 | """Workaround so .so files in generated wheels
|
31 | 44 | can be seen by auditwheel."""
|
@@ -62,6 +75,7 @@ def has_ext_modules(self):
|
62 | 75 | version='0.2.0',
|
63 | 76 | description=
|
64 | 77 | 'TensorFlow Quantum is a library for hybrid quantum-classical machine learning.',
|
| 78 | + long_description='\n'.join(DOCLINES[2:]), |
65 | 79 | author='Google Inc.',
|
66 | 80 |
|
67 | 81 | url='https://github.com/tensorflow/quantum/',
|
|
0 commit comments