forked from Datateer/target-gcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (52 loc) · 1.26 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
[tool.poetry]
name = "target-gcs"
version = "1.0.3"
description = "`target-gcs` is a Singer target for GCS, built with the Meltano SDK for Singer Targets."
authors = ["Datateer Ops"]
keywords = [
"ELT",
"GCS",
]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "<3.11,>=3.7.1"
requests = "^2.25.1"
singer-sdk = "^0.5.0"
google-cloud-storage = "^2.3.0"
google-api-python-client = "^2.49.0"
smart-open = {extras = ["gcs"], version = "^6.0.0"}
pytest-watch = "^4.2.0"
orjson = "^3.6.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
tox = "^3.24.4"
flake8 = "^4.0.1"
pydocstyle = "^6.1.1"
mypy = "^0.910"
types-requests = "^2.26.1"
isort = "^5.10.1"
black = "^22.3.0"
coverage = "^6.4"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "target_gcs"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
target-gcs = 'target_gcs.target:TargetGCS.cli'
[tool.black]
py36 = true
include = '\.pyi?$'
exclude = '.meltano/'
[tool.semantic_release]
version_variable = [
# "dr_sven/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"