-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 895 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
38
39
40
41
42
43
44
[project]
name = "docklet"
version = "0.1.0"
description = "A minimalist Docker clone for learning container internals"
requires-python = ">=3.10"
license = {text = "MIT"}
[project.scripts]
docklet = "docklet.cli:main"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.mypy]
strict = true
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
"ANN", # flake8-annotations
"RET", # flake8-return
"SIM", # flake8-simplify
]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["docklet"]
[tool.pytest.ini_options]
testpaths = ["tests"]