This repository has been archived by the owner on May 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (70 loc) · 2.05 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
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "qctrl-qiskit"
version = "0.0.4"
description = "Q-CTRL Qiskit Adapter"
license = "Apache-2.0"
authors = ["Q-CTRL <[email protected]>"]
readme = "README.md"
keywords = [
"quantum",
"computing",
"open source",
"engineering",
"qiskit"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Distributed Computing"
]
repository = "https://github.com/qctrl/python-qiskit"
packages = [
{ include = "qctrlqiskit" },
]
[tool.poetry.dependencies] # https://poetry.eustace.io/docs/versions
python = ">=3.7,<3.9"
numpy = "^1.16"
scipy = "^1.3"
toml = "^0.10.0"
qiskit-ibmq-provider = "^0.3.3"
qiskit-terra = "^0.12.0"
qctrl-open-controls = "^8.5.1"
[tool.poetry.dev-dependencies]
pytest = "*"
pylama = "*"
pylint = "*"
pylint_runner = "*"
sphinx = "^2.2.0"
nbval = "^0.9.5"
qctrl-visualizer = "^2.12.1"
isort = "^5.7.0"
[tool.isort]
profile = "black"
force_grid_wrap = "2"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
versioning = "pep"
prereleases = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
# _______________________________________
# / If you update this file, please run \
# \ poetry update && dephell deps convert /
# ---------------------------------------
# \ ^__^
# \ (oo)\_______
# (__)\ )\/\
# ||----w |
# || ||