-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (35 loc) · 930 Bytes
/
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
[tool.poetry]
name = "tap-sleeper"
version = "0.5.3"
description = "`tap-sleeper` is a Singer tap for Sleeper, built with the Meltano SDK for Singer Taps."
authors = ["Collin Prather"]
keywords = [
"ELT",
"Sleeper",
"Football"
]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/collinprather/tap-sleeper"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
singer-sdk = {version="~0.35.0"}
[tool.poetry.dev-dependencies]
pre-commit = "^2.16.0"
isort = "^5.10.1"
black = "^21.9b0"
mypy = "^0.910"
pytest = ">=7.4.0"
singer-sdk = { version="~=0.35.0", extras = ["testing"] }
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_sleeper"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-sleeper = 'tap_sleeper.tap:TapSleeper.cli'