-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 962 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
45
[project]
name = "interview_workbook"
version = "0.1.0"
description = "Python interview algorithms workbook"
requires-python = ">=3.9"
dependencies = ["flask>=3.0.0"]
[project.optional-dependencies]
dev = [
"ruff>=0.5.6",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pre-commit>=3.6.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["interview_workbook*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-q --cov=src --cov-report=term-missing:skip-covered --cov-report=xml"
[tool.ruff]
target-version = "py39"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
ignore = ["E501", "E741", "UP"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
docstring-code-format = true