-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 859 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "firehose-tap-docebo"
version = "0.1.0"
description = "`tap-docebo` is a Singer tap for Docebo, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["Mark Estey"]
keywords = [
"ELT",
"Docebo",
]
license = "Apache-2.0"
packages = [
{ include = "tap_docebo" },
]
[tool.poetry.dependencies]
python = "<3.12,>=3.8"
importlib-resources = { version = "==6.4.*", python = "<3.9" }
singer-sdk = { version="~=0.38.0" }
fs-s3fs = { version = "~=1.1.1", optional = true }
requests = "~=2.32.3"
[tool.poetry.group.dev.dependencies]
pytest = ">=8"
singer-sdk = { version="~=0.38.0", extras = ["testing"] }
[tool.poetry.extras]
s3 = ["fs-s3fs"]
[build-system]
requires = ["poetry-core==1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-docebo = 'tap_docebo.tap:TapDocebo.cli'