forked from z3z1ma/target-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (61 loc) · 2.02 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
[tool.poetry]
name = "z3-target-bigquery"
version = "0.7.1"
description = "z3-target-bigquery is a Singer target for BigQuery. It supports storage write, GCS, streaming, and batch load methods. Built with the Meltano SDK."
authors = ["Alex Butler <[email protected]>"]
keywords = ["ELT", "BigQuery"]
license = "MIT"
include = ["target_bigquery/*.py", "README.md", "LICENSE"]
homepage = "https://github.com/z3z1ma/target-bigquery"
repository = "https://github.com/z3z1ma/target-bigquery"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [
{ include = "target_bigquery/*.py" },
{ include = "README.md" },
{ include = "LICENSE" },
]
[tool.poetry.dependencies]
python = "<3.12,>=3.8"
requests = ">=2.25.1"
singer-sdk = ">=0.22.0,<0.23.0"
google-cloud-bigquery = { version = ">=3.4.1,<4", extras = ["bqstorage"] }
orjson = ">=3.7.2,<4"
tenacity = ">=8.0.1,<9"
grpcio-tools = ">=1.51.1,<2"
google-cloud-storage = ">=2.7.0,<3"
grpcio-status = ">=1.51.1,<2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
tox = "^3.24.4"
flake8 = "^3.9.2"
black = "^21.9b0"
pydocstyle = "^6.1.1"
mypy = "^0.910"
types-requests = "^2.26.1"
isort = "^5.10.1"
[tool.black] # https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file
line-length = 100
target-version = ["py39"]
preview = true
[tool.isort] # https://pycqa.github.io/isort/docs/configuration/options.html
color_output = true
line_length = 100
profile = "black"
src_paths = "target_bigquery"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
target-bigquery = 'target_bigquery.target:TargetBigQuery.cli'