-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.24 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "QuOp_MPI"
requires-python = ">=3.11"
authors = [
{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 :: 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"
]
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-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"
]
docs = [
"numpydoc==1.5.0",
"sphinxcontrib-bibtex==2.5.0",
"sphinx-rtd-theme==1.2.0"
]