-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (44 loc) · 1.12 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rl_qoc"
version = "0.1.0"
description = "Reinforcement Learning for Quantum Optimal Control"
readme = "README.md"
authors = [
{ name = "Arthur Strauss", email = "[email protected]" }
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib>=3.5.2",
"qiskit>=1.0.2",
"qiskit_aer>=0.13.3",
"qiskit_algorithms>=0.3.0",
"qiskit_dynamics>=0.5.0",
"qiskit_experiments>=0.6.0",
"qiskit_ibm_runtime>=0.22.0",
"scipy>=1.8.1",
"tqdm>=4.64.0",
"torch>=2.0.1",
"gymnasium>=0.29.1",
"jax<=0.4.30",
"sympy2jax>=0.0.5",
"pyyaml>=6.0.1",
"optuna~=3.5.0",
"qualang-tools>=0.16.0",
"chardet",
"tensorboard",
]
[tool.setuptools]
packages = ["rl_qoc"]
[tool.setuptools.package-data]
rl_qoc = ["*.py"]
[tool.setuptools.exclude-package-data]
rl_qoc = ["gate_level/*", "pulse_level/*"]