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"],