-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 844 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
[tool.poetry]
name = "todo-cli"
version = "0.1.0"
description = "Gestionnaire de tâches en ligne de commande"
authors = ["Aymane <aymanelhachimi2004@gmail.com>"]
readme = "README.md"
packages = [{ include = "todo_cli" }]
[tool.poetry.dependencies]
python = "^3.10"
typer = "*"
rich = "*"
pydantic = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
ruff = "^0.14.8"
mypy = "^1.19.0"
pre-commit = "^4.5.0"
Sphinx = "7.2.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 88
exclude = ["dist", ".venv", ".git", "__pycache__"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
strict = false
explicit_package_bases = true