diff --git a/setup.py b/setup.py index f8896f2..d993574 100644 --- a/setup.py +++ b/setup.py @@ -27,19 +27,22 @@ setup( "Topic :: Scientific/Engineering :: Physics", ], install_requires=[ - "scipy", - "numba", - "cytoolz", - "tqdm", - "psutil", + "networkx>=2.3", + "opt_einsum>=3.2", + "autoray>=0.2.0", + "diskcache>=3.0", + "mpi4py", + # "petsc4py", + # "slepc4py", + "randomgen>=1.18", "opt_einsum", "autoray", "quimb", "qibo" ], extras_require={ - "docs": ["sphinx", "sphinx_rtd_theme", "recommonmark", "sphinxcontrib-bibtex", "sphinx_markdown_tables", "nbsphinx", "IPython"], - "tests": ["pytest", "cirq", "ply", "sklearn", "dill"], + "docs": ["sphinx", "sphinx_rtd_theme", "recommonmark", "sphinxcontrib-bibtex", "sphinx_markdown_tables", "nbsphinx", "IPython", "doc2dash>=2.4.1", ], + "tests": ["pytest", "cirq", "ply", "sklearn", "dill", "coverage", "pytest-cov"], }, python_requires=">=3.7.0", long_description=long_description,