-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 982 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
43
[tool.poetry]
name = "tap-fabdb"
version = "0.0.2"
description = "A Singer tap for extracting data from the FaB DB API, built with the Singer SDK."
authors = ["David Wallace <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["flesh", "and", "blood"]
[tool.poetry.dependencies]
python = "<3.10,>=3.6.2"
singer-sdk = "^0.3.6"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
black = "^21.8b0"
flake8 = "^3.9.0"
mypy = "^0.910"
coverage = {version = "^5.5", extras = ["toml"]}
pytest-cov = "^2.11.1"
flake8-black = "^0.2.3"
isort = "^5.9.3"
flake8-isort = "^4.0.0"
flake8-bugbear = "^21.3.2"
flake8-bandit = "^2.1.2"
flake8-docstrings = "^1.6.0"
responses = "^0.16.0"
types-requests = "^2.26.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-fabdb = 'tap_fabdb.tap:TapFabDb.cli'