18 lines
382 B
TOML
18 lines
382 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.39",
|
||
|
|
"requests>=2.31",
|
||
|
|
"pandas>=2.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
tap-uk-idaci = "tap_uk_idaci.tap:TapUKIDACI.cli"
|