-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (89 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
96 lines (89 loc) · 2.19 KB
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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs==0.5",
"hatchling==1.29",
]
[project]
name = "tap-socketdev"
description = "Singer tap for Socket, built with the Meltano SDK for Singer Taps."
readme = "README.md"
keywords = [
"ELT",
"singer.io",
"Socket",
]
license = "Apache-2.0"
authors = [ { name = "Edgar Ramírez-Mondragón", email = "edgarrm358@gmail.com" } ]
requires-python = ">=3.12"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = [ "version" ]
dependencies = [
"requests~=2.32.0",
"singer-sdk~=0.54.0a4",
]
urls.Documentation = "https://github.com/reservoir-data/tap-socketdev#readme"
urls.Homepage = "https://github.com/reservoir-data/tap-socketdev"
urls.Repository = "https://github.com/reservoir-data/tap-socketdev"
scripts.tap-socketdev = "tap_socketdev.tap:TapSocketDev.cli"
[dependency-groups]
dev = [
{ include-group = "testing" },
{ include-group = "typing" },
]
ci = [
"pytest-github-actions-annotate-failures>=0.3",
]
testing = [
"pytest~=9.0",
"singer-sdk[testing]",
]
typing = [
"mypy>=1.8",
"ty>=0.0.1a18",
"types-requests~=2.32.0",
]
[tool.hatch]
version.source = "vcs"
[tool.ruff]
line-length = 88
lint.select = [
"ALL",
]
lint.ignore = [
"COM812", # missing-trailing-comma
"DJ", # flake8-django
"FIX002", # line-contains-todo
"ISC001", # single-line-implicit-string-concatenation
]
lint.per-file-ignores."noxfile.py" = [
"ANN",
]
lint.per-file-ignores."tests/*" = [
"ANN201", # missing-return-type-public-function
"INP001", # implicit-namespace-package
"S101", # assert
"SLF001", # private-member-access
]
lint.unfixable = [
"ERA001", # commented-out-code
]
lint.flake8-annotations.allow-star-arg-any = true
lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"
[tool.pyproject-fmt]
max_supported_python = "3.14"
[tool.pytest]
ini_options.addopts = "-vvv"
[tool.mypy]
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true