19 lines
433 B
TOML
19 lines
433 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "tap-uk-parent-view"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Singer tap for UK Ofsted Parent View survey data"
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
dependencies = [
|
||
|
|
"singer-sdk~=0.39",
|
||
|
|
"requests>=2.31",
|
||
|
|
"pandas>=2.0",
|
||
|
|
"openpyxl>=3.1",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
tap-uk-parent-view = "tap_uk_parent_view.tap:TapUKParentView.cli"
|