17 lines
383 B
TOML
17 lines
383 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "tap-uk-fbit"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Singer tap for UK FBIT (Financial Benchmarking and Insights Tool)"
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
dependencies = [
|
||
|
|
"singer-sdk~=0.39",
|
||
|
|
"requests>=2.31",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
tap-uk-fbit = "tap_uk_fbit.tap:TapUKFBIT.cli"
|