-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
51 lines (40 loc) · 1015 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
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "tap-jira"
version = "0.0.1"
description = "`tap-jira` is a Singer tap for tap-jira, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["Ethan Stein"]
keywords = [
"ELT",
"tap-jira",
]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.9"
singer-sdk = "~=0.43.1"
fs-s3fs = { version = "^1.1.1", optional = true }
requests = "~=2.32.2"
[tool.poetry.group.dev.dependencies]
pytest = ">=8"
singer-sdk = { version="*", extras = ["testing"] }
[tool.poetry.extras]
s3 = ["fs-s3fs"]
[tool.mypy]
python_version = "3.9"
warn_unused_configs = true
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.isort]
known-first-party = ["tap_jira"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-jira = 'tap_jira.tap:TapJira.cli'