Files
school_compare/pipeline/plugins/extractors/tap-uk-idaci/pyproject.toml
Tudor 250d1f7c77
Some checks failed
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 49s
Build and Push Docker Images / Build Frontend (Next.js) (push) Failing after 1m2s
Build and Push Docker Images / Trigger Portainer Update (push) Has been cancelled
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Has been cancelled
fix(tap-uk-idaci): add openpyxl dependency for Excel file parsing
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 15:00:00 +00:00

19 lines
403 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tap-uk-idaci"
version = "0.1.0"
description = "Singer tap for UK IDACI deprivation index"
requires-python = ">=3.10"
dependencies = [
"singer-sdk~=0.53",
"requests>=2.31",
"pandas>=2.0",
"openpyxl>=3.1",
]
[project.scripts]
tap-uk-idaci = "tap_uk_idaci.tap:TapUKIDACI.cli"