forked from MeltanoLabs/tap-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.2 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
52
[tool.poetry]
name = "tap-github"
version = "1.1.1"
description = "`tap-github` is Singer tap for GitHub, built with the Singer SDK."
authors = ["Meltano and Meltano Community"]
license = "Apache 2.0"
[tool.poetry.dependencies]
PyJWT = "2.4.0"
python = "<3.11,>=3.7.2"
requests = "^2.25.1"
singer-sdk = "^0.4.9"
# For local SDK dev:
# singer-sdk = {path = "../singer-sdk", develop = true}
# singer-sdk = {git = "https://gitlab.com/meltano/singer-sdk.git", rev = "97-hierarchical-streams"}
types-simplejson = "^3.17.2"
types-python-dateutil = "^2.8.6"
nested-lookup = "^0.2.23"
beautifulsoup4 = "^4.11.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
mypy = "^0.942"
flake8 = "^3.9.2"
black = "^22.1.0"
types-beautifulsoup4 = "^4.11.1"
types-requests = "^2.25.6"
types-python-dateutil = "^2.8.9"
requests-cache = "^0.9.1"
isort = "^5.10.1"
[[tool.mypy.overrides]]
module = [
"backoff",
]
ignore_missing_imports = true
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_github"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-github = 'tap_github.tap:cli'