From d66869467b776e79bef2fd9f60252313591ce80d Mon Sep 17 00:00:00 2001 From: Shivaraman Nitin Date: Mon, 27 Jun 2022 15:55:03 +0800 Subject: [PATCH] Adding the dependencies and requirements for quimb. Updated readme for installation. --- README.md | 2 ++ setup.py | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3cebc1b..569d948 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ Qibotn is the tensor-network tranlation module for Qibo to support large-scale simulation of quantum circuits and acceleration. + +To get started, `python setup.py install` to install the tools and dependencies. diff --git a/setup.py b/setup.py index aa640ee..f8896f2 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,15 @@ setup( "Topic :: Scientific/Engineering :: Physics", ], install_requires=[ - "scipy" + "scipy", + "numba", + "cytoolz", + "tqdm", + "psutil", + "opt_einsum", + "autoray", + "quimb", + "qibo" ], extras_require={ "docs": ["sphinx", "sphinx_rtd_theme", "recommonmark", "sphinxcontrib-bibtex", "sphinx_markdown_tables", "nbsphinx", "IPython"],