forked from keylime/keylime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 742 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 742 Bytes
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
[build-system]
requires = [
"setuptools>=42",
"jinja2",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
extend-exclude = 'test/data/template-invalid-adjust/2.0/adjust.py'
[tool.isort]
profile = "black"
line_length = 120
[tool.pyright]
include = ["keylime", "test"]
ignore = [
"keylime/backport_dataclasses.py",
"keylime/mba/elchecking/example.py",
"keylime/migrations/versions/",
"keylime/da/examples/sqldb.py",
"keylime/da/examples/redis.py",
"keylime/da/examples/file.py",
"test/data/template-invalid-adjust/2.0/adjust.py",
"test/test_session_controller.py",
"test/test_verifier_server.py",
]
reportMissingImports = false