-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (64 loc) · 1.52 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
[project]
name = "ticketswap-tap-dbt-artifacts"
version = "0.0.1"
description = "Singer tap for DbtArtifacts, built with the Meltano Singer SDK."
readme = "README.md"
authors = [{ name = "Fernando Corte Vargas", email = "[email protected]" }]
keywords = [
"ELT",
"DbtArtifacts",
]
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",
]
license = "Apache-2.0"
license-files = [ "LICENSE" ]
requires-python = "<3.13,>=3.9"
dependencies = [
"singer-sdk~=0.44.2",
]
[project.optional-dependencies]
s3 = [
"fs-s3fs~=1.1.1",
]
[project.scripts]
# CLI declaration
tap-dbt-artifacts = 'tap_dbt_artifacts.tap:TapDbtArtifacts.cli'
[dependency-groups]
dev = [
"pytest>=8",
"singer-sdk[testing]~=0.44.2",
]
[tool.hatch.build.targets.wheel]
packages = [
"tap_dbt_artifacts",
]
[tool.pytest.ini_options]
addopts = [
"--durations=10",
]
[tool.mypy]
python_version = "3.12"
warn_unused_configs = true
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
ignore = [
"COM812", # missing-trailing-comma
]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[build-system]
requires = [
"hatchling>=1,<2",
]
build-backend = "hatchling.build"