Replace Quarto site with static HTML generator

- Add site/generate.py: static site with search, filtering, sorting, dark mode
- Add site/static/style.css and main.js for the new frontend
- Extend parse.py: fetch CRAN published dates, PyPI release dates, and
  discover GitHub repos from CRAN pages as fallback data sources
- Migrate from Poetry to uv (pyproject.toml + uv.lock)
- Update CI workflow to use uv and generate.py pipeline
- Add CONTRIBUTING.md with entry format guidelines
- Add "Submit a Project" button to site nav
- Update review-pr skill with all accepted entry formats
- Update CLAUDE.md to reflect new architecture
- Remove Quarto files (_quarto.yml, *.qmd, sync-site skill, poetry.lock)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Wilson Freitas
2026-03-22 18:13:55 -03:00
co-authored by Claude Opus 4.6
parent 157e6cbd79
commit 5a6f90cc85
21 changed files with 15890 additions and 2336 deletions
+8 -12
View File
@@ -1,16 +1,12 @@
[tool.poetry]
[project]
name = "awesome-quant"
version = "0.1.0"
description = ""
authors = ["Wilson Freitas <wilson.freitas@gmail.com>"]
authors = [{ name = "Wilson Freitas", email = "wilson.freitas@gmail.com" }]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
PyGithub = "^2.2.0"
pandas = "^2.2.0"
mypy = "^1.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires-python = ">=3.11"
dependencies = [
"PyGithub>=2.2.0",
"pandas>=2.2.0",
"mypy>=1.14.0",
]