forked from qBraid/qbraid-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (59 loc) · 2.12 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
68
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "qbraid-algorithms"
version = "0.1.0"
authors = [{name = "qBraid Development Team"}, {email = "[email protected]"}]
description = "Python package for building, simulating, and benchmarking hybrid quantum-classical algorithms."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["qbraid", "quantum", "algorithms", "qml"]
license = {text = "GNU General Public License v3.0"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = ["torch", "numpy"]
[project.urls]
Homepage = "https://github.com/qBraid/qbraid-algorithms"
Documentation = "https://docs.qbraid.com/en/stable/"
"Bug Tracker" = "https://github.com/qBraid/qbraid-algorithms/issues"
Discord = "https://discord.gg/TPBU2sa8Et"
"Launch on Lab" = "https://account.qbraid.com/?gitHubUrl=https://github.com/qBraid/qbraid-algorithms.git"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
lint = ["black[jupyter]", "isort", "pylint", "qbraid-cli"]
docs = ["sphinx~=7.3.7", "sphinx-autodoc-typehints>=1.24,<2.2", "sphinx-rtd-theme~=2.0.0", "docutils<0.22"]
[tool.setuptools_scm]
write_to = "qbraid_algorithms/_version.py"
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311", "py312"]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 100
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 100
disable = "C0415, R0914, W0511"
[tool.pylint.MASTER]
ignore-paths = [
"^.*\\_version.py$",
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]