-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
109 lines (101 loc) · 2.12 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
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
101
102
103
104
105
106
107
108
109
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs==0.4",
"hatchling==1.27",
]
[project]
name = "tap-bitso"
description = "`tap-bitso` is a Singer tap for Bitso, built with the Meltano SDK for Singer Taps."
readme = "README.md"
keywords = [
"Bitso",
"ELT",
"meltano-sdk",
"singer.io",
]
license.file = "LICENSE"
maintainers = [
{ name = "Edgar Ramírez-Mondragón", email = "[email protected]" },
]
authors = [
{ name = "Edgar Ramírez-Mondragón", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [
"version",
]
dependencies = [
"requests~=2.32.3",
"singer-sdk~=0.44.2",
"stamina~=24.3.0",
"structlog>=23,<26",
]
urls.Documentation = "https://github.com/edgarrmondragon/tap-bitso#readme"
urls.Homepage = "https://github.com/edgarrmondragon/tap-bitso"
urls.Repository = "https://github.com/edgarrmondragon/tap-bitso"
scripts."tap-bitso" = "tap_bitso.tap:TapBitso.cli"
[dependency-groups]
dev = [
"colorama>=0.4.4",
{ include-group = "testing" },
{ include-group = "typing" },
]
testing = [
"deptry>=0.12",
"pytest>=7.4",
"singer-sdk[testing]",
]
typing = [
"mypy",
"types-requests",
]
[tool.hatch.version]
source = "vcs"
[tool.ruff]
line-length = 88
lint.select = [
"ALL",
]
lint.ignore = [
"COM812",
"DJ",
"FIX002",
"ISC001",
"PD",
]
lint.per-file-ignores."tests/*" = [
"ANN201",
]
lint.unfixable = [
"ERA001",
]
lint.pydocstyle.convention = "google"
[tool.pyproject-fmt]
max_supported_python = "3.13"
[tool.pytest.ini_options]
addopts = [ "-vvv" ]
[tool.mypy]
enable_error_code = [
"ignore-without-code",
"redundant-expr",
"truthy-bool",
]
warn_redundant_casts = true
warn_return_any = true
warn_no_return = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.uv]
prerelease = "allow"
preview = true
required-version = ">=0.5.19"