-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (62 loc) · 1.65 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
[project]
name = "dqpu"
dynamic = ["version"]
description = "Decentralized Quantum Processing Unit)"
readme = "README.md"
requires-python = ">= 3.9.2, <3.12"
license = {text = "Apache 2.0"}
authors = [
{name = "Davide Gessa", email = "[email protected]"},
]
dependencies = [
"scipy==1.13.0",
"matplotlib",
"qiskit==1.0.2",
"qiskit_aer==0.14.1",
"py-near",
"requests",
"numpy==1.26.4",
"openqasm3[parser]",
"scikit-build",
"base58",
"loguru",
"pydantic",
"nest_asyncio",
"pyqrack",
"qiskit-qrack-provider>=0.11.0",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/dakk/dqpu"
"Bug Tracker" = "https://github.com/dakk/dqpu/issues/"
Documentation = "https://dakk.github.io/dqpu"
Source = "https://github.com/dakk/dqpu"
[project.scripts]
dqpu-sim_trap_test_main = "dqpu.sim_trap_test_main:main"
dqpu-verifier = "dqpu.verifiernode:verifier_node"
dqpu-sampler = "dqpu.samplernode:sampler_node"
dqpu-cli = "dqpu.cli:cli"
[tool.setuptools]
packages = [
"dqpu",
"dqpu.q",
"dqpu.sampler",
"dqpu.verifier",
"dqpu.blockchain",
"dqpu.backends",
"dqpu.backends.qiskit",
]
zip-safe = false
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]