forked from MeltanoLabs/tap-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 927 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
37
38
39
40
41
42
[tool.poetry]
name = "tap-gitlab"
version = "2.0.0"
description = "`tap-gitlab` is a Singer tap for GitLab, built with the Meltano SDK for Singer Taps."
authors = ["Meltano and Meltano Community"]
keywords = [
"ELT",
"GitLab",
]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "<3.12,>=3.7.1"
requests = "^2.25.1"
singer-sdk = "^0.14.0"
requests-cache = "^0.9.3"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
tox = "^3.24.4"
flake8 = "^5.0.4"
black = "^22.10.0"
pydocstyle = "^6.1.1"
mypy = "^0.981"
types-requests = "^2.27.1"
isort = "^5.10.1"
types-python-dateutil = "^2.8.10"
python-dotenv = "^0.20.0"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_gitlab"
[build-system]
requires = ["poetry-core==1.6.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-gitlab = 'tap_gitlab.tap:TapGitLab.cli'