-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.36 KB
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
[project]
name = "target-redshift"
version = "0.3.1"
description = "`target-redshift` is a Singer target for Redshift, built with the Meltano Singer SDK."
authors = [{ name = "Tobias Cadee", email = "tobias.cadee@ticketswap.com" }]
requires-python = ">=3.9,<3.13"
readme = "README.md"
license = "Apache-2.0"
keywords = [
"ELT",
"Redshift",
]
dependencies = [
"singer-sdk~=0.44.3",
"redshift-connector>=2.1.5,<3",
"boto3>=1.37.19,<2",
"sqlalchemy-redshift>=0.8.14,<0.9",
"psycopg2-binary>=2.9.10,<3",
"simplejson>=3.20.1,<4",
"smart-open>=7.1.0,<8",
]
[project.optional-dependencies]
s3 = ["fs-s3fs~=1.1.1"]
[project.scripts]
target-redshift = "target_redshift.target:TargetRedshift.cli"
[dependency-groups]
dev = [
"pytest>=7.4.0",
"singer-sdk[testing]~=0.44.3",
"ipykernel>=6.29.5,<7",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1,<2"]
[tool.ruff]
src = ["target_redshift"]
target-version = "py37"
line-length = 120
[tool.ruff.lint]
ignore = [
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.isort]
known-first-party = ["target_redshift"]
[tool.ruff.lint.pydocstyle]
convention = "google"