-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
67 lines (54 loc) · 1.44 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
[tool.poetry]
name = "meltano-tap-hubspot"
version = "0.0.0"
description = "`tap-hubspot` is a Singer tap for tap-hubspot, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["Ethan Stein"]
keywords = [
"ELT",
"tap-hubspot",
]
license = "Apache-2.0"
packages = [
{ include = "tap_hubspot" },
]
[tool.poetry.dependencies]
python = ">=3.9"
backports-datetime-fromisoformat = {version = "==2.0.3", python = "<3.11"}
fs-s3fs = { version = "~=1.1.1", optional = true }
requests = "==2.32.2"
singer-sdk = { version="~=0.43.1" }
[tool.poetry.group.dev.dependencies]
pytest = ">=7"
singer-sdk = { version="~=0.43.0", extras = ["testing"] }
[tool.poetry.extras]
s3 = ["fs-s3fs"]
[tool.mypy]
python_version = "3.9"
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"backports.datetime_fromisoformat.*",
]
[tool.ruff]
src = ["tap_hubspot"]
target-version = "py39"
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.isort]
known-first-party = ["tap_hubspot"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core==1.9.1", "poetry-dynamic-versioning==1.4.1"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
# CLI declaration
tap-hubspot = 'tap_hubspot.tap:TapHubspot.cli'
[tool.poetry-dynamic-versioning]
enable = true