-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpyproject.toml
29 lines (24 loc) · 1.47 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
[build-system]
requires = ["cmake~=3.27.0", "ninja; platform_system!='Windows'", "setuptools>=42", "tomli"]
build-backend = "setuptools.build_meta"
[project]
name = "PennyLane_Lightning"
description = "PennyLane-Lightning plugin"
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Physics",]
dependencies = ["pennylane>=0.40", "scipy-openblas32>0.3.26"]
dynamic = [ "version",]
[[project.maintainers]]
name = "Xanadu Quantum Technologies Inc."
email = "[email protected]"
[project.license]
text = "Apache License 2.0"
[project.optional-dependencies]
gpu = [ "pennylane-lightning-gpu",]
kokkos = [ "pennylane-lightning-kokkos",]
tensor = [ "pennylane-lightning-tensor",]
[project.urls]
Homepage = "https://github.com/PennyLaneAI/pennylane-lightning"
[project.entry-points."pennylane.plugins"]
"lightning.qubit" = "pennylane_lightning.lightning_qubit:LightningQubit"