-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.69 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sqmap"
description = "Single Qubit MAPping package developped during the Quantum Computing Summer School 2021 at Los Alamos National Laboratory"
authors = [{ name = "Adrien Suau", email = "[email protected]" }]
maintainers = [
{ name = "Adrien Suau", email = "[email protected]" },
]
readme = "README.md"
keywords = ["quantum", "tomography", "single qubit", "mapping", "visualisation"]
dynamic = ["version"]
dependencies = [
"qiskit ~= 1.0",
"numpy",
"scipy",
"matplotlib",
"sqt",
"cartopy",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/nelimee/sqmap"
Repository = "https://github.com/nelimee/sqmap"
Issues = "https://github.com/nelimee/sqmap/issues"
[project.scripts]
sqmap_bloch_tomography_plot = "sqmap._cli.bloch_tomography_plot:main"
sqmap_bloch_tomography_plot_concise = "sqmap._cli.bloch_tomography_plot_concise:main"
sqmap_bloch_tomography_plot_cartopy = "sqmap._cli.bloch_tomography_plot_cartopy:main"
sqmap_bloch_tomography_chip_plot = "sqmap._cli.bloch_tomography_chip_plot:main"
sqmap_shot_dependency_plot = "sqmap._cli.precision_evolution:main"
[tool.setuptools.dynamic]
version = { attr = "sqmap.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
sqt = ["*.txt", "*.rst", "py.typed"]