-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
97 lines (88 loc) · 1.96 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
[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.10.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.37.0',
'docplex==2.28.240',
'yfinance==0.2.49',
'pytket-qiskit==0.62',
'pytket-quantinuum==0.42.0',
'qiskit==1.3.1',
'scipy>=1.10.1',
'seaborn>=0.12.2',
'sympy>=1.12',
'tqdm>=4.65.0',
]
[project.optional-dependencies]
GPU-CUDA12 = [
'cupy-cuda12x>=13.2.0'
]
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