-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (88 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
102 lines (88 loc) · 1.9 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools-git-versioning<3"]
build-backend = "setuptools.build_meta"
[project]
name = "nanokvm"
dynamic = ["version"]
description = "Async client for NanoKVM devices."
urls = {repository = "https://github.com/puddly/python-nanokvm"}
authors = [
{name = "puddly", email = "puddly3@gmail.com"}
]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
dependencies = [
"aiohttp",
"cryptography",
"yarl",
"pillow",
"pydantic",
"paramiko",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
[project.optional-dependencies]
testing = [
"tomli",
"coverage[toml]",
"cryptography",
"pytest",
"pytest-xdist",
"pytest-asyncio",
"pytest-cov",
"pytest-timeout",
"aioresponses",
]
[tool.setuptools-git-versioning]
enabled = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
required-version = ">=0.5.0"
target-version = "py39"
line-length = 88
exclude = [
".venv",
".git",
".tox",
"docs",
"venv",
"bin",
"lib",
"deps",
"build",
]
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["F811"]
[tool.ruff.lint.isort]
force-sort-within-sections = true
known-first-party = [
"nanokvm",
]
combine-as-imports = true
split-on-trailing-comma = false
[tool.codespell]
ignore-words-list = ["hass"]
skip = ["./.*", "tests/*", "pyproject.toml"]
quiet-level = 2
[tool.mypy]
strict = true
install_types = true
non_interactive = true
show_error_codes = true
show_error_context = true
error_summary = true
[tool.coverage.run]
source = ["nanokvm"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:",
"raise NotImplementedError",
"raise NotImplementedError()",
]