-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
114 lines (103 loc) · 2.57 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qgym"
authors = [{ name = "QuTech (TNO, TU Delft)"}]
maintainers = [{ name = "QuTech (TNO, TU Delft)"}]
description = "Reinforcement Learning Gym for Quantum Compilation"
classifiers =[
"License :: OSI Approved :: Apache Software License",
"Private :: Do Not Upload to pypi server",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
"Typing :: Typed",
]
requires-python = ">=3.8"
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
keywords =[
"Reinforcement Learning",
"QuTech",
"TNO",
"TU Delft",
"Quantum",
"Gym",
"Quantum Compilation",
]
dependencies = [
"gymnasium>=0.28.1",
"networkx[default]>=2.6.3",
"numpy>=1.21.6",
"pygame",
]
dynamic = ["version"]
[project.optional-dependencies]
tutorial = [
"matplotlib",
"notebook",
"stable-baselines3>=2.0.0",
]
test = [
"pytest",
"stable-baselines3>=2.0.0",
"scipy>=1.7.3",
]
dev = [
"black[jupyter]",
"isort",
"matplotlib",
"notebook",
"pytest",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-math-dollar",
"sphinx-rtd-theme~=1.0",
"stable-baselines3>=2.0.0",
"mypy",
"pylint",
"scipy>=1.7.3",
]
[tool.setuptools.packages.find]
include = ["qgym*"]
exclude = ["tests*"]
[tool.setuptools.dynamic]
version = {attr = "qgym.__version__"}
[tool.black]
force-exclude="(deps|docs|docs_build|docs_html|images|openql_output|pybuild|qgym.egg-info|venv|wsl_venv)"
[tool.isort]
profile="black"
extend_skip_glob = [
"deps",
"docs",
"docs_build",
"docs_files",
"images",
"openql_output",
"pybuild",
"qgym.egg-info",
"venv",
"wsl_venv"
]
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]
strict = true
ignore_missing_imports = true
show_error_context = true
install_types = true
disallow_subclassing_any = false
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.typecheck]
generated-members = ["torch.*", "numpy.*", "pygame.*"]
[tool.pylint.main]
extension-pkg-whitelist="pygame.gfxdraw"