-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
51 lines (45 loc) · 1.16 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "tap-clickup"
version = "0.0.22"
description = "tap-clickup is a Singer tap for ClickUp by AutoIDM"
authors = ["AutoIDM"]
maintainers = ["AutoIDM"]
license = ""
readme = "README.md"
homepage = "https://autoidm.com"
repository = "https://github.com/AutoIDM/tap-clickup"
documentation = "https://github.com/AutoIDM/tap-clickup"
keywords = [
"AutoIDM",
"Auto IDM",
"tap-clickup",
"clickup",
"tap",
"singer",
"sdk"
]
[tool.poetry.urls]
"Issues" = "https://github.com/AutoIDM/tap-clickup/issues"
"Twitter" = "https://twitter.com/AutoIDM"
"Youtube" = "https://www.youtube.com/channel/UCk4lfv8fZ4rMlYzw9N_FM0g"
"LinkedIn" = "https://www.linkedin.com/company/68741135"
[tool.poetry.dependencies]
python = "<3.12,>=3.7.1"
requests = "^2.25.1"
singer-sdk = "0.29.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
black = "22.3.0"
flake8 = "^3.9.0"
tox = "^3.23.1"
codecov = "^2.1.11"
pylint = "2.10.2"
responses = "0.20.0"
[tool.pytest.ini_options]
log_cli = 1
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-clickup = 'tap_clickup.tap:TapClickUp.cli'