forked from radbrt/target-oracle
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
47 lines (42 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
44
45
46
47
[tool.poetry]
name = "thk-target-mysql"
version = "0.1.3"
description = "`target-mysql` is a Singer target for MySQL, built with the Meltano Singer SDK."
authors = ["Taehwan Kwag <[email protected]>"]
keywords = [
"ELT",
"MySQL",
"Singer",
"Meltano"
]
license = "Apache 2.0"
packages = [
{ include = "target_mysql" }
]
readme = ["README.md"]
repository = "https://github.com/thkwag/target-mysql"
[tool.poetry.dependencies]
python = "<=3.11,>=3.8.1"
requests = "^2.25.1"
singer-sdk = "^0.30.0"
mysqlclient = "^2.2.0"
cryptography = "^41.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
tox = "^4.6.4"
flake8 = "^6.0.0"
black = "^23.7.0"
pydocstyle = "^6.1.1"
mypy = "^1.4.1"
types-requests = "^2.26.1"
isort = "^5.12.0"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "target_mysql"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
target-mysql = 'target_mysql.target:TargetMySQL.cli'