-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 2.03 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pennylane-calculquebec"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = ["numpy", "juliacall >= 0.9.0", "pennylane >= 0.30.0", "networkx >= 3.3"]
description = "Pennylane plugin enabling seamless job execution on MonarQ, Calcul Québec’s nonprofit-hosted quantum computer"
readme = "README.md"
maintainers = [
{ name = "Calcul Québec", email = "[email protected]" },
]
license = { text = "Creative Commons" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Common Public License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Source = "https://github.com/calculquebec/pennylane-calculquebec"
[project.optional-dependencies]
test = ["matplotlib", "pytest", "pytest-mock", "flaky"]
[project.entry-points."pennylane.plugins"]
"snowflurry.qubit" = "pennylane_calculquebec:SnowflurryQubitDevice"
"monarq.default" = "pennylane_calculquebec:MonarqDevice"
[project.entry-points."pennylane.io"]
[tool.setuptools]
packages = ["pennylane_calculquebec", "pennylane_calculquebec.measurements", "pennylane_calculquebec.utility", "pennylane_calculquebec.API", "pennylane_calculquebec.processing", "pennylane_calculquebec.processing.steps", "pennylane_calculquebec.processing.config", "pennylane_calculquebec.processing.interfaces"]
[tool.setuptools.dynamic]
version = { attr = "pennylane_calculquebec._version.__version__" }