-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (32 loc) · 959 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["qcircpy"]
package-dir = { "" = "src" }
[project]
name = "qcircpy"
version = "0.2.2"
authors = [
{name="Jake Lu", email="jylu1205@outlook.com"},
]
description = "A package for Python Quantum Circuit Simulation and Benchmarking"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Environment :: GPU :: NVIDIA CUDA :: 11",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"Natural Language :: English",
]
dependencies=[
"numpy",
]
license = { file = "LICENSE" }
keywords = ["quantum", "circuit", "simulation", "benchmarking"]
[project.urls]
Homepage = "https://github.com/Deftioon/qcircpy"
Issues = "https://github.com/Deftioon/qcircpy/issues"