forked from google/avatar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (66 loc) · 1.58 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
[project]
name = "pandora-avatar"
authors = [{name = "Pandora", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version", "description"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"bt-test-interfaces",
"bumble==0.0.154",
"grpcio>=1.51.1",
"mobly>=1.12",
"bitstruct>=8.12",
]
[project.urls]
Source = "https://github.com/google/avatar"
[project.optional-dependencies]
dev = [
"grpcio-tools>=1.51.1",
"black==22.10.0",
"pyright==1.1.298",
"mypy==1.0",
"isort==5.12.0",
"types-psutil>=5.9.5.6",
"types-setuptools>=65.7.0.3",
"types-protobuf>=4.21.0.3"
]
[tool.black]
line-length = 119
target-version = ["py38", "py39", "py310", "py311"]
skip-string-normalization = true
[tool.flit.module]
name = "avatar"
[tool.isort]
profile = "black"
line_length = 119
no_sections = true
lines_between_types = 1
combine_as_imports = true
[tool.mypy]
strict = true
warn_unused_ignores = false
files = ["avatar", "cases"]
[[tool.mypy.overrides]]
module = "grpc.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "mobly.*"
ignore_missing_imports = true
[tool.pyright]
include = ["avatar", "cases"]
exclude = ["**/__pycache__"]
typeCheckingMode = "strict"
useLibraryCodeForTypes = true
verboseOutput = false
reportMissingTypeStubs = false
reportUnknownLambdaType = false
reportImportCycles = false
[tool.pytype]
inputs = ['avatar', 'cases']
[build-system]
requires = ["flit_core==3.7.1"]
build-backend = "flit_core.buildapi"