-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 786 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "repo-task-tracker"
version = "0.1.0"
description = "GitHub Action: sync tracker.json tasks to Issues and a Project board"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Diogo Ribeiro", email = "dfr@esmad.ipp.pt" }]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "mypy>=1.10"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=short"
[tool.coverage.run]
source = ["."]
omit = ["tests/*", "setup.py"]
[tool.mypy]
python_version = "3.10"
warn_unused_ignores = true
warn_redundant_casts = true
show_error_codes = true
[[tool.mypy.overrides]]
module = ["pytest"]
ignore_missing_imports = true