-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.32 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
[project]
name = "tap-delighted"
version = "0.1.0"
description = "`tap-delighted` is a Singer tap for Delighted, built with the Meltano Singer SDK."
authors = [{ name = "Tobias Cadee", email = "tobias.cadee@ticketswap.com" }]
requires-python = ">=3.8,<4"
readme = "README.md"
license = "Apache-2.0"
keywords = [
"ELT",
"Delighted",
]
dependencies = [
"singer-sdk>=0.33,<0.45",
"requests>=2.31,<2.33",
"delighted>=4.1.0,<5",
"pytz>=2024.1,<2026.0",
]
[project.optional-dependencies]
s3 = ["fs-s3fs~=1.1.1"]
[project.scripts]
tap-delighted = "tap_delighted.tap:TapDelighted.cli"
[dependency-groups]
dev = [
"pytest>=7.4.0",
"singer-sdk[testing]>=0.33,<0.43",
]
[tool.hatch.build.targets.sdist]
include = ["tap_delighted"]
[tool.hatch.build.targets.wheel]
include = ["tap_delighted"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1,<2"]
[tool.mypy]
python_version = "3.9"
warn_unused_configs = true
[tool.ruff]
lint.ignore = [
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
"DTZ005", # timezone-utc
]
line-length = 120
lint.select = ["ALL"]
src = ["tap_delighted"]
target-version = "py37"
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.isort]
known-first-party = ["tap_delighted"]
[tool.ruff.lint.pydocstyle]
convention = "google"