generated from evmckinney9/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.53 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mirror-gates"
description = "My package description"
version = "0.1.0"
authors = [{ name = "Evan McKinney", email = "evmckinney9@gmail.com" }]
requires-python = ">=3.9"
dependencies = [
"scipy",
"qutip",
"numpy==1.23.5",
"weylchamber",
"networkx",
"matplotlib",
"retworkx",
"ipykernel",
"qiskit==0.43.3",
"qiskit-terra @ git+https://github.com/evmckinney9/qiskit-evmckinney9.git@sqisw-gate",
"networkx",
"pylatexenc",
]
[project.optional-dependencies]
core = [
"monodromy @ git+https://github.com/evmckinney9/monodromy.git",
"transpile_benchy @ git+https://github.com/evmckinney9/transpile_benchy.git",
]
dev = [
"pre-commit",
"pylatexenc",
"ipympl",
"snakeviz",
"SciencePlots",
"LovelyPlots",
]
format = [
"pre-commit",
"black[jupyter]",
"isort",
"tomli",
"pydocstyle",
"ruff",
"docformatter[tomli]",
]
test = ["pytest"]
[project.entry-points."qiskit.transpiler.layout"]
legacy_sabre = "mirror_gates.qiskit.mirage_plugins:LegacySabreLayoutPlugin"
sabre_layout_v2 = "mirror_gates.qiskit.mirage_plugins:MirageLayoutPlugin"
[project.entry-points."qiskit.transpiler.routing"]
mirage = "mirror_gates.qiskit.mirage_plugins:MirageRoutingPlugin"
[tool.ruff]
target-version = "py311"
fix = true
include = ["*.py", "*.pyi", "**/pyproject.toml", "*.ipynb"]
[tool.isort]
profile = "black"