-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (61 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (61 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
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tensorcircuit-ng"
description = "High performance unified quantum computing framework for the NISQ era"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
]
authors = [
{ name = "TensorCircuit-NG Authors", email = "znfesnpbh@gmail.com" },
]
dynamic = ["version"]
dependencies = [
"numpy",
"scipy",
"tensornetwork-ng",
"networkx",
]
[project.urls]
Homepage = "https://github.com/tensorcircuit/tensorcircuit-ng"
Repository = "https://github.com/tensorcircuit/tensorcircuit-ng"
[project.optional-dependencies]
tensorflow = ["tensorflow"]
jax = ["jax", "jaxlib"]
torch = ["torch"]
qiskit = ["qiskit", "sympy", "symengine"]
cloud = ["qiskit", "mthree<2.8"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = { attr = "tensorcircuit.__version__" }
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore:Explicitly requested dtype*:UserWarning",
]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
strict = true
warn_unused_ignores = false
disallow_untyped_calls = false
local_partial_types = false
implicit_reexport = true
[[tool.mypy.overrides]]
# mypy simply cannot ignore files with wildcard patterns...
# only module level * works...
module = "tensorcircuit.backends.pytorch_ops"
ignore_errors = true
[[tool.mypy.overrides]]
module = "cirq.*"
ignore_errors = true