-
Notifications
You must be signed in to change notification settings - Fork 21
/
tach.toml
54 lines (48 loc) · 1.04 KB
/
tach.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
exclude = [
".*__pycache__",
"docs",
]
exact = true
ignore_type_checking_imports = true
forbid_circular_dependencies = true
source_roots = [
".",
]
[[modules]]
path = "qiskit_aqt_provider"
depends_on = [
{ path = "qiskit_aqt_provider.api_client" },
]
[[modules]]
path = "qiskit_aqt_provider.api_client"
depends_on = []
[[modules]]
path = "test"
depends_on = [
{ path = "qiskit_aqt_provider" },
{ path = "qiskit_aqt_provider.api_client" },
]
[[modules]]
path = "examples"
depends_on = [
{ path = "qiskit_aqt_provider" },
]
strict = true
[external]
exclude = [
"python",
# if dotenv is not installed (like e.g. in the pre-commit hook's environment)
# tach cannot know that this is the distribution for dotenv
# https://github.com/gauge-sh/tach/issues/414
"python_dotenv",
"dotenv",
# pydantic-core always comes with pydantic
"pydantic_core",
# testing dependencies:
"pytest",
"pytest_sugar",
"pytest_mock",
# example dependencies:
"qiskit_algorithms",
"qiskit_optimization",
]