-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (80 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["cython", "setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "quantrl"
authors = [
{name = "Sampreet Kalita", email = "[email protected]"},
]
maintainers = [
{name = "Sampreet Kalita", email = "[email protected]"},
]
description = "Quantum Control with Reinforcement Learning"
keywords = [
"quantum",
"toolbox",
"reinforcement learning",
"python3",
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"numpy<2.0.0",
"scipy",
"matplotlib",
"tqdm",
"pillow",
"pandas",
"gymnasium",
"stable-baselines3",
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
jax-cpu = [
"jax",
"diffrax",
]
jax-gpu = [
"jax[cuda12]",
"diffrax",
]
torch = [
"torch",
"torchvision",
"torchaudio",
"torchdiffeq",
]
[project.urls]
Homepage = "https://github.com/sampreet/quantrl"
Repository = "https://github.com/sampreet/quantrl"
Issues = "https://github.com/sampreet/quantrl/issues"
Changelog = "https://github.com/sampreet/quantrl/blob/master/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["quantrl"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "quantrl.__version__"}
[tool.tox]
legacy_tox_ini = """
[tox]
requires =
tox>=4
virtualenv>=20
env_list =
lint
[testenv:lint]
description = run pylint under {base_python}
deps =
-r requirements_tox.txt
commands =
pylint quantrl
"""