-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (84 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
95 lines (84 loc) · 2.44 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qbraid-algorithms"
dynamic = ["version", "dependencies"]
authors = [{name = "qBraid Development Team"}, {email = "contact@qbraid.com"}]
description = "Python package for utilizing, implementing, and building quantum algorithms in OpenQASM 3."
readme = "README.md"
requires-python = ">=3.11"
keywords = ["qbraid", "quantum", "algorithms", "openqasm"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
[project.optional-dependencies]
cli = [
"typer>=0.12.1",
"rich>=10.11.0",
"typing-extensions"
]
pulse = [
"pyqasm[pulse]"
]
[project.scripts]
qbraid-algorithms = "qbraid_algorithms.cli.main:app"
[tool.setuptools.dynamic]
version = {attr = "qbraid_algorithms._version.__version__"}
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/qBraid/qbraid-algorithms"
Documentation = "https://docs.qbraid.com/v2/algorithms"
"Bug Tracker" = "https://github.com/qBraid/qbraid-algorithms/issues"
Discord = "https://discord.gg/TPBU2sa8Et"
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = "W0108,W0511,W0401,R0902,R0903,R0913,E0401"
[tool.pylint.MASTER]
ignore-paths = [
"^.*\\_version.py$",
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
[tool.coverage.report]
exclude_lines = [
"pass",
"raise NotImplementedError",
"return NotImplemented",
"def __repr__",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"logger.debug",
"# pragma: no cover"
]
[tool.coverage.run]
parallel = true
source = ["qbraid_algorithms"]
omit = [
"**/qbraid_algorithms/__init__.py"
]