SPB Git

spb/airiskindex Public

The most methodologically rigorous, fully transparent AI job-exposure index.

TypeScript 88% Python 6.1% SQL 2.7% CSS 1.2% JavaScript 0.9% Shell 0.8%
436 B · 21 lines toml
Raw Blame History
1[project]2name = "airiskindex-etl"3version = "0.1.0"4description = "AI Risk Index data pipeline: raw source dumps -> derived artifacts -> Postgres"5requires-python = ">=3.12"6dependencies = [7    "requests>=2.32",8    "openpyxl>=3.1",9    "psycopg[binary]>=3.2",10]1112[project.optional-dependencies]13dev = ["pytest>=8", "ruff>=0.5"]1415[tool.ruff]16line-length = 10017target-version = "py312"1819[tool.pytest.ini_options]20testpaths = ["tests"]21