refactor: flatten padelnomics/padelnomics/ → repo root

git mv all tracked files from the nested padelnomics/ workspace
directory to the git repo root. Merged .gitignore files.
No code changes — pure path rename.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Deeman
2026-02-22 00:44:40 +01:00
parent 5e471567b9
commit 4ae00b35d1
235 changed files with 45 additions and 42 deletions

32
pyproject.toml Normal file
View File

@@ -0,0 +1,32 @@
[tool.uv.workspace]
members = [
"web",
"extract/padelnomics_extract",
"transform/sqlmesh_padelnomics",
]
[dependency-groups]
dev = [
"hypothesis>=6.151.6",
"niquests>=3.14.0",
"playwright>=1.58.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-playwright>=0.7.2",
"respx>=0.22.0",
"ruff>=0.3.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["web/tests"]
markers = ["visual: Playwright visual tests (require browser install)"]
addopts = "-m 'not visual'"