-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtach.toml
61 lines (56 loc) · 1.18 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
55
56
57
58
59
60
61
exclude = [
".*__pycache__",
"docs",
".*test",
]
source_roots = [
".",
]
exact = true
forbid_circular_dependencies = true
[[modules]]
path = "examples"
depends_on = [
{ path = "qiskit_aqt_provider" },
]
[[modules]]
path = "qiskit_aqt_provider"
depends_on = [
{ path = "qiskit_aqt_provider.api_client" },
]
[[modules]]
path = "qiskit_aqt_provider.api_client"
depends_on = []
[[interfaces]]
expose = [
"DEFAULT_PORTAL_URL",
"PortalClient",
"Resource",
"ResourceType",
"Workspace",
"Workspaces",
"__version__",
# There are some instances of this, although not included in __all__
"models.*",
]
from = [
"qiskit_aqt_provider.api_client",
]
[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",
]