forked from Slope86/QIRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.86 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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]>=6.2",
"wheel",
"qiskit[visualization] == 1.1.0",
"IPython",
]
build-backend = "setuptools.build_meta"
[project]
name = "QIRT"
dynamic = ["version"]
authors = [{ name = "HSIEH, LI-YU", email = "[email protected]" }]
description = "A quantum information research toolkit"
readme = "README.md"
license = { file = "LICENSE.md" }
classifiers = [
"Environment :: Web Environment",
"Environment :: Other Environment",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Jupyter",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.10"
dependencies = ["qiskit[visualization] >= 1.1.0", "IPython >= 8.24.0"]
[project.urls]
Documentation = "https://slope86.github.io/QIRT"
"API Reference" = "https://slope86.github.io/QIRT/reference/"
Repository = "https://github.com/Slope86/QIRT"
Issues = "https://github.com/Slope86/QIRT/issues"
[project.optional-dependencies]
dev = ["pytest", "mkdocs", "mkdocstrings[python]", "mkdocs-material"]
[tool.setuptools]
packages = ["QIRT"]
[tool.setuptools.package-data]
"QIRT.config" = ["default_config.ini"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
[tool.ruff]
line-length = 120
target-version = "py311"
pydocstyle.convention = "google"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "N", "D"]
ignore = ["N999"]
[tool.ruff.format]
quote-style = "double"