-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (54 loc) · 1.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hai"
dynamic = ["version"]
description = "Toolbelt library"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
authors = [
{ name = "Valohai", email = "[email protected]" },
]
[project.urls]
Homepage = "https://github.com/valohai/hai"
[tool.hatch.version]
path = "hai/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/hai",
]
[tool.mypy]
strict = true
exclude = "hai_tests/test_.*"
[[tool.mypy.overrides]]
module = "boto3.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "botocore.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "moto.*"
ignore_missing_imports = true
[tool.ruff]
target-version = "py37"
line-length = 120
[tool.ruff.lint]
mccabe.max-complexity = 10
select = [
"B", # bugbear
"C90", # mccabe
"COM", # trailing commas
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"T", # debugger and print
"UP", # upgrade
"W", # pycodestyle
]
ignore = [
"E741", # Ambiguous variable name
]
[tool.pytest.ini_options]
norecursedirs = [".git", ".tox"]