-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.09 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
[tool.poetry]
name = "tap-indeed"
version = "0.0.24"
description = "`tap-indeed` is a Singer tap for IndeedSponsoredJobs, built with the Meltano SDK for Singer Taps."
repository = "https://github.com/AutoIDM/tap-indeed"
authors = ["AutoIDM"]
keywords = [
"ELT",
"IndeedSponsoredJobs",
"tap-indeed",
"Indeed",
"singer-sdk",
"meltano"
]
license = "Apache 2.0"
packages = [
{include = "tap_indeedsponsoredjobs"}
]
[tool.poetry.dependencies]
backoff = "^2.2.0"
python = "<3.11,>=3.7.1"
requests = "^2.25.1"
singer-sdk = "^0.21.0"
cloudscraper = "1.2.64"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
tox = "^3.24.4"
flake8 = "^3.9.2"
black = "23.1.0"
pydocstyle = "^6.1.1"
mypy = "^0.910"
types-requests = "^2.26.1"
isort = "^5.10.1"
responses = "0.22.0"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_indeedsponsoredjobs"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-indeedsponsoredjobs = 'tap_indeedsponsoredjobs.tap:TapIndeedSponsoredJobs.cli'