-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.61 KB
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
54
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "excitationsolve"
dynamic = ["version"]
authors = [
{name = "Jonas Jäger", email = "jojaeger@cs.ubc.ca"},
{name = "Thierry N. Kaldenbach", email = "Thierry.Kaldenbach@dlr.de"},
{name = "Max Haas", email = "Max.Haas@dlr.de"},
{name = "Erik Schultheis", email = "Erik.Schultheis@dlr.de"},
]
description = "ExcitationSolve: a fast globally-informed gradient-free optimizer for physically-motivated ansätze constructed of excitation operators"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["optimizer", "quantum computing", "ExcitationSolve", "gradient-free", "excitation operators", "UCCSD", "VQE"]
license = {file = "LICENSE.txt"}
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"scipy"
]
[project.optional-dependencies]
examples = [
"qiskit==1.4.0",
"qiskit-algorithms==0.3.1",
"qiskit-nature==0.7.2",
"pyscf==2.8.0",
"pennylane==0.42.3",
"openfermionpyscf==0.5",
"aiohttp==3.11.15",
"fsspec==2025.2.0",
"h5py==3.13.0",
]
[tool.setuptools.dynamic]
version = {attr = "excitationsolve.info.__version__"}
[tool.setuptools]
packages = ["excitationsolve"]
[project.urls]
Repository = "https://github.com/dlr-wf/ExcitationSolve/"
Issues = "https://github.com/dlr-wf/ExcitationSolve/issues"