-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Edric Matwiejew
committed
Aug 23, 2024
1 parent
f95867e
commit 9ad6417
Showing
1 changed file
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,53 +2,53 @@ | |
name = "QuOp_MPI" | ||
requires-python = ">=3.11" | ||
authors = [ | ||
{name = "Edric Matwiejew", email = "[email protected]"} | ||
{name = "Edric Matwiejew", email = "[email protected]"} | ||
] | ||
description = "A parallel framework for the design and simulation of quantum variational algorithms" | ||
readme = "README.rst" | ||
classifiers = [ | ||
"Development Status :: Unstable", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Natural Language :: English", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Fortran", | ||
"Topic :: Scientific/Engineering :: Physics" | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: GNU General Public License v3.0 (GPLv3)", | ||
"Natural Language :: English", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Fortran", | ||
"Topic :: Scientific/Engineering :: Physics" | ||
] | ||
dependencies = [ | ||
"numpy>=1.21", | ||
"mpi4py>=3.1.2", | ||
"scipy>=1.9.1", | ||
"h5py>=3.0.0" | ||
"pandas>=1.3.4", | ||
"networkx>=2.8.6", | ||
"numpy>=1.21", | ||
"mpi4py>=3.1.2", | ||
"scipy>=1.9.1", | ||
"h5py>=3.0.0", | ||
"pandas>=1.3.4", | ||
"networkx>=2.8.6" | ||
] | ||
|
||
version = "1.2.0" | ||
|
||
[build-system] | ||
requires = [ | ||
"build", | ||
"wheel", | ||
"ninja", | ||
"scikit-build>0.13.0", | ||
"cmake>=3.18", | ||
"numpy>=1.21, <1.26.0", | ||
"build", | ||
"wheel", | ||
"ninja", | ||
"scikit-build>0.13.0", | ||
"cmake>=3.18", | ||
"numpy>=1.21, <1.26.0", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project.optional-dependencies] | ||
examples = [ | ||
"pandas-datareader==0.10.0", | ||
"yfinance==0.2.12", | ||
"matplotlib>=3.6.0", | ||
"seaborn>=0.11.2", | ||
"jupyter-client>=6.1.2", | ||
"jupyter-core>=4.6.3" | ||
"pandas-datareader==0.10.0", | ||
"yfinance==0.2.12", | ||
"matplotlib>=3.6.0", | ||
"seaborn>=0.11.2", | ||
"jupyter-client>=6.1.2", | ||
"jupyter-core>=4.6.3" | ||
] | ||
docs = [ | ||
"numpydoc", | ||
"sphinxcontrib-bibtex==2.5.0", | ||
"sphinx-rtd-theme==1.2.0", | ||
"numpydoc==1.5.0" | ||
"numpydoc==1.5.0", | ||
"sphinxcontrib-bibtex==2.5.0", | ||
"sphinx-rtd-theme==1.2.0" | ||
] | ||
|