-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 1.01 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
[tool.poetry]
name = "tap-krow"
version = "0.10.3"
description = "`tap-krow` is a Singer tap for the KROW API, built with the Meltano SDK for Singer Taps."
authors = ["Datateer"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.12"
requests = "^2.25.1"
singer-sdk = "^0.22.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-watch = "^4.2.0"
coverage = {extras = ["toml"], version = "^5.5"}
black = { version = "*", allow-prereleases = true }
flake8 = "^5.0.4"
flake8-bugbear = "^22.8.23"
requests-mock = "^1.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-krow = 'tap_krow.tap:TapKrow.cli'
[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version",]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 95