-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 880 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
46
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "I"]
[tool.coverage.run]
branch = true
source = ["project"]
[tool.coverage.report]
omit = ["tests/*"]
# fail_under = 90
[tool.pyright]
exclude = ["**/__pycache__", "**/.pytest_cache"]
reportMissingImports = "error"
[tool.poetry]
name = "project"
version = "0.1.0"
description = "Python Project Template"
authors = ["Amr Abed <amrabed>"]
license = "MIT"
readme = "docs/README.md"
[tool.poetry.scripts]
app = "project.app:main"
[tool.poetry.dependencies]
python = "^3.12"
click = "^8.1.8"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.1"
ruff = "^0.15.2"
coverage = "^7.6.9"
pre-commit = "^4.0.1"
pyright = "^1.1.391"
mkdocs = "^1.6.1"
mkdocstrings = { version = "^1.0.0", extras=["python"] }
mkdocs-material = "^9.6.20"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"