-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
105 lines (96 loc) · 2.13 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
name = "qokit"
description="Quantum Optimization Toolkit"
readme = "README.md"
authors = [
{name = "JP Morgan Chase & Co"},
{email = "[email protected]"}
]
license = {file = "LICENSE"}
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
version = "0.1.4"
requires-python = ">=3.9.0"
dependencies = [
'networkx>=3.0.0',
'importlib-resources>=5.2.2',
'numba>=0.56.4,<1',
'pandas>=2.0.1',
'pathos>=0.3.0',
'pytest>=7.3.1',
'pytket>=1.15.0,<2',
'pytket-qiskit>=0.39.0,<1',
'pytket-quantinuum>=0.16.0,<1',
'qiskit>=0.42,<1',
'qiskit-finance>=0.3,<1',
'qiskit-ibmq-provider>=0.20.2,<1',
'scipy>=1.10.1',
'seaborn>=0.12.2',
'sympy>=1.12',
'tqdm>=4.65.0',
]
[project.optional-dependencies]
GPU = [
'qiskit-aer-gpu>=0.8'
]
dev = [
'black[d]>=23.3.0',
'setuptools>=58.1.0',
'Deprecated>=1.2.13',
'urllib3>=1.26.6',
'statsmodels>=0.13.5',
'scikit-learn>=1.2.2'
]
solvers = [
'docplex>=2.18.200',
'gurobipy>=9.1.2'
]
[build-system]
requires = ["setuptools>=45",
"wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 160
target-version = ['py38', 'py39', 'py310', 'py311']
force-exclude = '''
(
/(
| .git
| .github
| jupyter
)/
| scripts/*.sh
| scripts/*.md
| ^.txt
| ^.txt
| ^.sh
| ^.md
)
'''
[tool.setuptools]
py-modules = []
[tool.coverage.run]
omit = [
"qokit/classical_methods/utils.py",
"qokit/fur/nbcuda/fur.py",
"qokit/fur/nbcuda/*",
"qokit/fur/mpi_nbcuda/*",
"qokit/fur/mpi_custatevec/*",
"qokit/fur/diagonal_precomputation/gpu_numba.py",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["*.json", "*.npy"]
[tool.setuptools.dynamic]
[tool.pyright]
reportIncompatibleMethodOverride = true
reportPrivateUsage = true