-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (86 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
99 lines (86 loc) · 2.06 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
97
98
99
[project]
name = "tap-sunwave"
dynamic = ["version"]
description = "Singer tap for Sunwave, built with the Meltano Singer SDK."
authors = [{ name = "Pat Nadolny", email = "firstname.lastname@example.com" }]
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
keywords = [
"ELT",
"Sunwave",
]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
'backports-datetime-fromisoformat>=2.0.1; python_version<"3.11"',
"singer-sdk~=0.53.0",
"requests~=2.33.0",
"typing-extensions>=4.15.0 ; python_full_version < '3.12'",
]
[project.optional-dependencies]
s3 = ["s3fs>=2026.2.0"]
[project.scripts]
tap-sunwave = "tap_sunwave.tap:TapSunwave.cli"
[dependency-groups]
dev = [
"ruff~=0.15.0",
{ include-group = "testing" },
]
testing = [
"pytest>=9",
"singer-sdk[testing]",
]
typing = [
"backports-datetime-fromisoformat>=2.0.3",
"mypy>=1.19.1",
"ty>=0.0.11",
"types-requests>=2.32.4.20260107",
]
[build-system]
requires = [
"hatchling~=1.28.0",
"hatch-vcs~=0.5.0",
]
build-backend = "hatchling.build"
[tool.hatch.version]
fallback-version = "0.0.0.dev0"
source = "vcs"
[tool.pytest]
addopts = [
"-v",
"--durations=10",
]
log_level = "INFO"
minversion = "9"
[tool.mypy]
follow_untyped_imports = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = [
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
"D",
]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.uv]
prerelease = "allow"
required-version = ">=0.9.17"