-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.7 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
# file pyproject.toml
[project]
name = "qiskit_pasqal_provider"
version = "0.2.1"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE.txt"}
description = "Qiskit provider for Pasqal's analog neutral atom QPUs"
authors = [
{ name = "Eduardo Maschio", email = "[email protected]"},
{ name = "Aleksander Wennersteen", email = "[email protected]"},
{ name = "Roland Guichard", email = "[email protected]"},
{ name = "Pasqal", email="[email protected]"},
]
dependencies = [
"certifi>=2021.5.30",
"importlib_metadata>=4.8.1",
"qiskit>=1.0,<3",
"pulser>=1.6,<2",
"pulser-pasqal>=0.20,<1",
"pasqal-cloud>=0.20,<1",
"sympy",
]
[project.optional-dependencies]
mps = ["emu-mps>=2"]
# Dev dependencies.
dev = [
"coverage>=5.5",
"pylint>=2.9.5",
"nbqa>=1.1.1",
"treon>=0.1.3",
"pytest>=6.2.5",
"pytest-randomly>=1.2.0",
"mypy>=0.780",
"mypy-extensions>=0.4.3",
"jupyter-sphinx>=0.3.2",
"nbsphinx>=0.8.8",
"sphinx-autodoc-typehints>=1.17.0",
"qiskit-sphinx-theme~=1.16.0",
"reno>=3.5.0",
# Black's formatting rules can change between major versions, so we use
# the ~= specifier for it.
"black[jupyter]~=24.10",
]
[project.urls]
"Homepage" = "https://github.com/qiskit-community/qiskit-pasqal-provider"
"Bug Tracker" = "https://github.com/qiskit-community/qiskit-pasqal-provider/issues"
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"toml",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
include = ['qiskit_pasqal_provider*']
exclude = ['qiskit_pasqal_provider*tests', 'demo']