-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (101 loc) · 2.81 KB
/
pyproject.toml
File metadata and controls
112 lines (101 loc) · 2.81 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["quantumpytho*"]
[tool.setuptools.package-data]
quantumpytho = ["data/dna/*.json", "data/dna/*.qasm", "data/dna/sequences/*.json"]
[project]
name = "QPyth"
version = "0.4.0"
description = "QPyth - Qiskit-based quantum toolkit for simulation, education, and research workflows with VQE, IBM Quantum integration, realistic noisy simulation, quantum error correction, quantum teleportation, and optional web UI"
authors = [
{ name = "Quantum Dynamics", email = "quantumdynamics927@gmail.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"qiskit>=1.1.0",
"qiskit-aer>=0.15.0",
"numpy>=2.0.0",
"pandas>=2.0.0",
]
[project.optional-dependencies]
physical = [
"qiskit-algorithms>=0.3.0",
"qiskit-nature>=0.7.0",
]
hardware = [
"qiskit-ibm-runtime>=0.28.0",
]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.14.0",
"httpx>=0.27.0",
"fastapi>=0.115.0,<1.0.0",
"slowapi>=0.1.9",
"ruff>=0.6.0",
"pre-commit>=3.7.0",
]
web = [
"fastapi>=0.115.0,<1.0.0",
"uvicorn[standard]>=0.32.0,<1.0.0",
"slowapi>=0.1.9",
]
docs = [
"mkdocs>=1.5.0,<2.0.0",
"mkdocs-material>=9.0.0,<10.0.0",
"pymdown-extensions>=10.0.0",
]
database = [
"psycopg2-binary>=2.9.9",
]
all = [
"qiskit-algorithms>=0.3.0",
"qiskit-nature>=0.7.0",
"qiskit-ibm-runtime>=0.28.0",
"fastapi>=0.115.0,<1.0.0",
"uvicorn[standard]>=0.32.0,<1.0.0",
"slowapi>=0.1.9",
"mkdocs>=1.5.0,<2.0.0",
"mkdocs-material>=9.0.0,<10.0.0",
"pymdown-extensions>=10.0.0",
"psycopg2-binary>=2.9.9",
]
[project.urls]
Homepage = "https://github.com/quantumdynamics927-dotcom/QPyth"
Repository = "https://github.com/quantumdynamics927-dotcom/QPyth"
Issues = "https://github.com/quantumdynamics927-dotcom/QPyth/issues"
[project.scripts]
qpy = "quantumpytho.menu:run_app"
[tool.ruff]
line-length = 88
target-version = "py310"
extend-exclude = ["notebooks/*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
]