forked from MeltanoLabs/tap-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (68 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "meltanolabs-tap-postgres"
version = "0.0.0"
description = "`tap-postgres` is a Singer tap for Postgres, built with the Meltano SDK for Singer Targets."
authors = ["Meltano Team and Contributors <[email protected]>"]
maintainers = ["Meltano Team and Contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://meltano.com"
repository = "https://github.com/meltanolabs/tap-postgres"
keywords = [
"Postgres",
"Singer",
"ELT",
"Meltano",
"Meltano SDK",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
packages = [
{ include = "tap_postgres" }
]
[tool.poetry.dependencies]
python = "<3.12,>=3.8.1"
singer-sdk = "~=0.33.0"
psycopg2-binary = "2.9.9"
sqlalchemy = "<2"
sshtunnel = "0.4.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
faker = ">=18.5.1,<21.0.0"
flake8 = "^6.0.0"
isort = "^5.10.1"
mypy = "1.7.1"
pendulum = "~=2.1"
pre-commit = "^3.0.4"
pydocstyle = "^6.1.1"
singer-sdk = {version = "*", extras = ["testing"]}
tox = "^4"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_postgres"
[tool.mypy]
exclude = "tests"
python_version = "3.9"
warn_unused_configs = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"sshtunnel",
]
[build-system]
requires = ["poetry-core>=1.0.8", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
# CLI declaration
tap-postgres = 'tap_postgres.tap:TapPostgres.cli'