-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (62 loc) · 1.57 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
[build-system]
build-backend = "hatchling.build"
requires = [ "hatch-vcs==0.5", "hatchling==1.30.1" ]
[project]
name = "meltano-tap-hubspot"
description = "Singer tap for Hubspot, built with the Meltano Singer SDK."
readme = "README.md"
keywords = [
"ELT",
"tap-hubspot",
]
license = "Apache-2.0"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"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",
]
dynamic = [ "version" ]
dependencies = [
"backports-datetime-fromisoformat==2.0.3; python_full_version<'3.11'",
"requests==2.34.2",
"singer-sdk~=0.54.4",
]
[[project.authors]]
name = "Ethan Stein"
[project.optional-dependencies]
s3 = [ "s3fs>=2025.7" ]
[project.scripts]
tap-hubspot = "tap_hubspot.tap:TapHubspot.cli"
[dependency-groups]
dev = [
"pytest>=9",
"singer-sdk[testing]",
]
[tool.hatch.build.targets.sdist]
include = [ "tap_hubspot" ]
[tool.hatch.build.targets.wheel]
include = [ "tap_hubspot" ]
[tool.hatch.version]
fallback-version = "0.0.0.dev0"
source = "vcs"
[tool.uv]
default-groups = "all"
[tool.ruff]
src = [ "tap_hubspot" ]
[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"
[tool.mypy]
follow_untyped_imports = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unused_configs = true