forked from MeltanoLabs/meltano-map-transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.43 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
[tool.poetry]
name = "meltano-map-transform"
version = "0.1.0"
description = "`meltano-map-transform` is a Singer-compatible inline map transformer, built with the Meltano SDK for Singer Taps."
authors = [
"Meltano Team and Contributors",
]
keywords = [
"ELT",
"singer.io",
"Inline Transformation",
]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/MeltanoLabs/meltano-map-transform"
repository = "https://github.com/MeltanoLabs/meltano-map-transform"
documentation = "https://github.com/MeltanoLabs/meltano-map-transform#readme"
[tool.poetry.dependencies]
python = "<3.12,>=3.7.1"
singer-sdk = "0.20.0"
[tool.poetry.dev-dependencies]
mypy = ">=0.930"
pytest = "^7.2.1"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "meltano_map_transform"
[tool.pytest.ini_options]
addopts = "-vvv"
[tool.mypy]
python_version = "3.9"
warn_unused_configs = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"backoff.*",
"singer.*", # https://github.com/transferwise/pipelinewise-singer-python/issues/25
]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
meltano-map-transform = "meltano_map_transform.mapper:StreamTransform.cli"
[tool.commitizen]
name = "cz_version_bump"
version = "0.0.5"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:^version =",
]