SPB Git forge

spb/api-ka

Public

API-KA — plateforme centrale : collecte quotidienne des 8 services KA, historisation append-only et API publique sur www.api-ka.com

48commits 1branches 0releases
5.9 MBsize
maindefault branch
19 days agolast push
Python 60.9% HTML 21% TypeScript 7.3% JavaScript 5.2% CSS 4.8% Shell 0.8%
664 B · 26 lines toml
Raw Blame History
1# ============================================2# Projet   : API-KA3# Fichier  : pyproject.toml4# Node     : m3u96b5# Author   : Simon-Pierre Boucher6# Contact  : contact@spboucher.ai7# Date     : 2026-08-168# ============================================910[tool.black]11line-length = 8812target-version = ["py311"]1314[tool.ruff]15line-length = 8816target-version = "py311"1718[tool.ruff.lint]19# E/W = pycodestyle, F = pyflakes, I = isort, UP = pyupgrade, B = bugbear20select = ["E", "W", "F", "I", "UP", "B"]21# E501 géré par black ; B008 = Depends() dans les signatures FastAPI (idiome officiel)22ignore = ["E501", "B008"]2324[tool.pytest.ini_options]25testpaths = ["tests"]26