This repository was archived by the owner on Dec 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (76 loc) · 2 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
78
79
80
81
82
83
[tool.poetry]
name = "qctrl-pyquil"
version = "0.1.0"
description = "Q-CTRL Python PyQuil"
license = "Apache-2.0"
authors = ["Q-CTRL <support@q-ctrl.com>"]
maintainers = ["Q-CTRL <support@q-ctrl.com>"]
readme = "README.md"
homepage = "https://q-ctrl.com"
repository = "https://github.com/qctrl/python-pyquil"
keywords = [
"q-ctrl",
"qctrl",
"quantum control"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Distributed Computing"
]
packages = [
{ include = "qctrlpyquil" },
]
[tool.poetry.dependencies] # https://poetry.eustace.io/docs/versions
python = ">=3.7.2,<3.9"
numpy = "^1.16"
scipy = "^1.3"
toml = "^0.10.0"
pyquil = "^2.9"
qctrl-open-controls = "^9.1.1"
[tool.poetry.dev-dependencies]
pytest = "*"
pylama = "*"
pylint = "*"
pylint_runner = "*"
sphinx = "^2.2.0"
nbval = "^0.9.5"
qctrl-visualizer = "^3.4.0"
[tool.poetry.urls]
GitHub = "https://github.com/qctrl"
Twitter = "https://twitter.com/qctrlHQ"
[tool.black]
exclude = '''
(
/(
docs
)/
)
'''
[tool.isort]
profile = "black"
force_grid_wrap = "2"
known_first_party = "qctrlopencontrols"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
# _______________________________________
# / If you update this file, please run \
# \ poetry update && dephell deps convert /
# ---------------------------------------
# \ ^__^
# \ (oo)\_______
# (__)\ )\/\
# ||----w |
# || ||