-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (45 loc) · 1.33 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
[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]
cached-property = "^1" # Remove after Python 3.7 support is dropped
python = ">=3.7,<3.12"
typer = "^0.12.5"
typing-extensions = "^4.7"
meltano-edk = {git = "https://github.com/meltano/edk.git", rev = "v0.1.0"}
[tool.poetry.group.dev.dependencies]
coverage = "^7.2"
meltano = "^2.17"
pytest = "^7.4"
[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.5.0"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "cron_ext" }
]
[tool.poetry.scripts]
cron = 'cron_ext.main:app'