forked from learningequality/kolibri-installer-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 667 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 667 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
32
33
34
35
36
37
[project]
name = "kolibri-installer-android"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = []
[project.optional-dependencies]
dev = [
"prek",
"websockets>=16.0",
]
test = [
"pytest",
"websockets>=16.0",
]
build = [
"google-api-python-client==2.96.0",
"google-auth==2.22.0",
"google-auth-httplib2==0.1.0",
]
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["E", "F", "W", "C90", "I", "T10"]
ignore = ["E226", "E203", "E501", "E741"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.isort]
force-single-line = true
known-first-party = ["kolibri"]
[tool.pytest.ini_options]
testpaths = ["scripts/tests"]