-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (36 loc) · 1018 Bytes
/
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
[tool.poetry]
name = "psql2bigquery"
version = "0.0.3"
description = "Export PostgreSQL databases to Google Cloud Platform BigQuery"
authors = ["Joao Daher <[email protected]>"]
repository = "https://github.com/CraveFood/psql2bigquery"
readme = "README.md"
keywords = ["postgresql", "bigquery", "sink"]
packages = [
{ include = "psql2bigquery" },
]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
click = "*"
google-cloud-bigquery = "*"
psycopg2-binary = "*"
sentry-sdk = {version = "*", optional = true}
[tool.poetry.extras]
sentry = ["sentry-sdk"]
[tool.poetry.dev-dependencies]
black = "*"
pylint = "*"
[tool.black]
line-length = 120
target-version = ['py39']
[tool.pylint.messages_control]
disable = "C0114,C0115,C0116,R0913,R0914,W1203"
[tool.pylint.format]
max-line-length = "120"
[tool.pylint.basic]
good-names= "i, j, k, m, n, dt, db, id, pk, tz, qs, ex, _"
[tool.poetry.scripts]
psql2bigquery = 'psql2bigquery.main:cli'
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"