-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
98 lines (88 loc) · 2.62 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[tool.poetry]
name = "meltanolabs-tap-github"
version = "1.10.0"
description = "Singer tap for GitHub, built with the Singer SDK."
authors = ["Meltano and Meltano Community <[email protected]>"]
maintainers = [
"Meltano and Meltano Community <[email protected]>",
"Edgar Ramírez-Mondragón <[email protected]>",
]
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"]
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
]
packages = [
{ include = "tap_github", format = ["sdist", "wheel"] }
]
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/MeltanoLabs/tap-github/issues"
[tool.poetry.dependencies]
beautifulsoup4 = "~=4.12.0"
nested-lookup = "~=0.2.25"
PyJWT = "2.10.1"
python = ">=3.9"
python-dateutil = "~=2.9"
requests = "~=2.32.3"
# For local SDK dev:
# singer-sdk = {path = "../singer-sdk", develop = true}
singer-sdk = "~=0.43.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.3.1"
requests-cache = ">=1.0.1"
types-beautifulsoup4 = ">=4.12.0"
types-python-dateutil = "~=2.9.0"
types-requests = ">=2.30.0"
types-simplejson = "~=3.19.0"
[[tool.mypy.overrides]]
module = ["backoff"]
ignore_missing_imports = true
[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'
[tool.pytest.ini_options]
markers = [
"repo_list: mark a test as using a list of repos in config",
"username_list: mark a test as using a list of usernames in config",
]
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
ignore = []
select = [
"F", # Pyflakes
"E", # pycodestyle (errors)
"W", # pycodestyle (warnings)
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"YTT", # flake8-2020
"ANN", # flake8-annotations
"B", # flake8-bugbear
"A", # flake8-builtins
"C4", # flake8-comprehensions
"DTZ", # flake8-datetimez
"FA", # flake8-future-annotations
"SIM", # flake8-simplify
"TC", # flake8-type-checking
"PERF", # Perflint
"FURB", # refurb
"RUF", # Ruff-specific rules
]
[tool.ruff.lint.per-file-ignores]
"tap_github/tests/*" = ["ANN"]