-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (94 loc) · 2.43 KB
/
pyproject.toml
File metadata and controls
100 lines (94 loc) · 2.43 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
100
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling>=1,<2",
]
[project]
name = "meltano-tap-circle-ci"
description = "Singer tap for CircleCI, built with the Meltano SDK for Singer Taps."
readme = "README.md"
keywords = [
"CircleCI",
"ELT",
"Meltano",
]
license = "Apache-2.0"
maintainers = [ { name = "Meltano Team", email = "hello@meltano.com" } ]
authors = [ { name = "Fran Lozano", email = "fjlozanos@gmail.com" } ]
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 = [
"requests~=2.32.1",
"singer-sdk~=0.53.0",
"typing-extensions>=4.15; python_full_version<'3.12'",
]
urls.Documentation = "https://github.com/MeltanoLabs/tap-circle-ci/blob/main/README.md"
urls.Homepage = "https://github.com/MeltanoLabs/tap-circle-ci"
urls.Repository = "https://github.com/MeltanoLabs/tap-circle-ci"
scripts.tap-circle-ci = "tap_circle_ci.tap:TapCircleCI.cli"
[dependency-groups]
dev = [
"urllib3>=2.6.3",
{ include-group = "test" },
{ include-group = "typing" },
]
test = [
"pytest>=9",
]
typing = [
"mypy>=1.7.1",
"ty>=0.0.13",
"types-requests~=2.32.4.20250611",
{ include-group = "test" },
]
[tool.hatch]
build.targets.sdist.include = [ "tap_circle_ci" ]
build.targets.wheel.include = [ "tap_circle_ci" ]
version.fallback-version = "0.0.0.dev0"
version.source = "vcs"
[tool.ruff]
line-length = 100
format.preview = true
lint.select = [
"ALL",
]
lint.ignore = [
"COM812", # missing-trailing-comma
"CPY", # missing-copyright-notice
"DJ", # flake8-django
"ISC001", # single-line-implicit-string-concatenatio
]
lint.explicit-preview-rules = false
lint.per-file-ignores."noxfile.py" = [
"ANN",
]
lint.per-file-ignores."tests/*" = [
"ANN201", # missing-return-type-public-function
"S101", # assert
"SLF001", # private-member-access
]
lint.unfixable = [
"ERA001", # commented-out-code
]
lint.flake8-annotations.allow-star-arg-any = true
lint.isort.known-first-party = [
"tap_circle_ci",
]
lint.pydocstyle.convention = "google"
# Enable preview style formatting.
lint.preview = true
[tool.pytest]
log_level = "INFO"
minversion = "9"
[tool.mypy]
warn_unused_ignores = true
warn_unused_configs = true