generated from unai/python_boilerplate
Dev #2
@ -1,10 +1,10 @@
|
||||
[tool.poetry]
|
||||
name = "my-project"
|
||||
name = "m3u_list_builder"
|
||||
version = "0.0.0"
|
||||
description = "Python boilerplate for Gitea with Docker and Poetry"
|
||||
description = "Python tool to build M3U lists from various sources."
|
||||
authors = ["Unai Blazquez <unaibg2000@gmail.com>"]
|
||||
readme = "README.md"
|
||||
packages = [{include = "my_project", from = "src"}]
|
||||
packages = [{ include = "m3u_list_builder", from = "src" }]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.14"
|
||||
@ -28,10 +28,13 @@ target-version = "py314"
|
||||
[tool.ruff.lint]
|
||||
# E/F: Errores base, I: Imports (isort), D: Docstrings
|
||||
select = ["E", "F", "I", "D"]
|
||||
ignore = ["D100", "D104"] # Ignorar docstring en modulos/paquetes vacíos si se desea
|
||||
ignore = [
|
||||
"D100",
|
||||
"D104",
|
||||
] # Ignorar docstring en modulos/paquetes vacíos si se desea
|
||||
|
||||
[tool.ruff.lint.pydocstyle]
|
||||
convention = "google" # Estilo de docstring (Google, NumPy o PEP 257)
|
||||
convention = "google" # Estilo de docstring (Google, NumPy o PEP 257)
|
||||
|
||||
# --- Configuración de Coverage ---
|
||||
[tool.coverage.run]
|
||||
@ -39,5 +42,5 @@ source = ["src"]
|
||||
branch = true
|
||||
|
||||
[tool.coverage.report]
|
||||
fail_under = 80 # CI falla si el coverage es menor al 80%
|
||||
fail_under = 80 # CI falla si el coverage es menor al 80%
|
||||
show_missing = true
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user