-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.35 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
# Usage:
# pip install -e . --config-settings editable_mode=strict
[build-system]
requires = ["setuptools>=61.0.0", "grpcio-tools"]
build-backend = "setuptools.build_meta"
[project]
name = "android-bt"
version = "0.1.0"
authors = [{ name = "Google", email = "android-bluetooth@google.com" }]
requires-python = ">=3.11"
dependencies = [
"mobly",
"typing_extensions",
"numpy >=1.22",
"scipy >= 1.8",
"mypy == 1.15.0",
"protobuf",
"types-protobuf",
"yapf",
"types-portpicker",
# Only for local test.
"pytest",
"bumble == 0.0.214",
"snippet-uiautomator"
]
[tool.setuptools.package-data]
"*" = ["*.pyi", "py.typed"]
[tool.setuptools.package-dir]
"_pandora_build" = "pandora/interfaces/python"
"pandora_services" = "pandora/server/pandora_services"
"pandora" = "pandora/interfaces/python/pandora"
"mmi2grpc" = "android/pandora/mmi2grpc/mmi2grpc"
"navi" = "android/navi/navi"
[tool.setuptools.cmdclass]
build_py = "_pandora_build._build.cmd.build_py"
[tool.mypy]
disable_error_code = ["method-assign"]
[[tool.mypy.overrides]]
module = "grpc.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "mobly.*"
follow_untyped_imports = true
[[tool.mypy.overrides]]
module = "snippet_uiautomator.*"
follow_untyped_imports = true
[[tool.mypy.overrides]]
# Generated files.
module = "a2dp.packets.*"
ignore_errors = true