This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
forked from MeltanoLabs/tap-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (67 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[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"]
homepage = "https://github.com/MeltanoLabs/tap-github"
repository = "https://github.com/MeltanoLabs/tap-github"
license = "Apache 2.0"
keywords = [
"Meltano",
"Singer",
"Meltano SDK",
"Singer SDK",
"ELT",
"Github",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
]
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/MeltanoLabs/tap-github/issues"
[tool.poetry.dependencies]
PyJWT = "2.7.0"
python = "<3.12,>=3.7.2"
requests = "^2.31.0"
# For local SDK dev:
# singer-sdk = {path = "../singer-sdk", develop = true}
singer-sdk = "^0.22.0"
types-simplejson = "^3.19.0"
types-python-dateutil = "^2.8.6"
nested-lookup = "^0.2.25"
beautifulsoup4 = "^4.12.0"
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
mypy = "^1.3.0"
flake8 = "^5.0.4"
black = "^23.3.0"
types-beautifulsoup4 = "^4.12.0"
types-requests = "^2.30.0"
requests-cache = "^1.0.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'