-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.23 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
[tool.poetry]
name = "cron-ext"
version = "0.1.0"
description = "`cron-ext` is a Meltano utility extension that provides basic job scheduling via cron."
authors = ["Meltano <[email protected]>"]
license = "MIT"
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/meltano/basic-python-template/issues"
"Twitter" = "https://twitter.com/meltanodata/"
"Changelog" = "https://github.com/meltano/basic-python-template/blob/main/CHANGELOG.md"
"Slack" = "https://meltano.com/slack"
"Youtube" = "https://www.youtube.com/meltano"
[tool.poetry.dependencies]
python = ">=3.9"
typer = "^0.15.1"
typing-extensions = "^4.7"
meltano-edk = { version = "~=0.5.0" }
[tool.poetry.group.dev.dependencies]
coverage = "^7.2"
meltano = [
{ version = ">=3.5", python = ">=3.9,<3.14" },
]
pytest = "^8.3"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
[tool.mypy]
disallow_untyped_defs = true
check_untyped_defs = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
exclude = [
'tests',
]
[tool.pytest.ini_options]
addopts = "-ra -vvv"
[build-system]
requires = ["poetry-core==1.9.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
cron = 'cron_ext.main:app'