-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.14 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
[tool.poetry]
authors = ["Chaichontat Sriworarat <[email protected]>"]
description = ""
license = "GPL v3.0"
name = "loopy-browser"
packages = [{include = "loopy"}]
version = "0.0.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.bandit]
exclude = "tests"
skips = ["B101", "B404", "B603", "B607"]
targets = "loopy"
[tool.black]
line-length = 110
target-version = ['py310']
[tool.pyright]
include = ["loopy"]
pythonVersion = "3.10"
reportMissingTypeStubs = false
reportPrivateUsage = false
reportPropertyTypeMismatch = false
reportUnknownArgumentType = false
reportUnknownMemberType = false
reportUnknownVariableType = false
reportUntypedFunctionDecorator = false
reportUnusedImport = false
reportUnusedVariable = "warning"
typeCheckingMode = "strict"
[tool.ruff]
line-length = 120
[tool.isort]
line_length = 110
profile = "black"
py_version = 310
src_paths = ["loopy"]
[tool.pytest.ini_options]
addopts = "--cov=loopy --cov-report=html --cov-report=xml"
log_cli = 1
# log_cli_level = "DEBUG"
minversion = "7.0"
testpaths = ["tests"]
[tool.poetry.scripts]
loopy = 'loopy.entrypoint:cli'