-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 930 Bytes
/
pyproject.toml
File metadata and controls
40 lines (32 loc) · 930 Bytes
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
[tool.poetry]
name = "dabapush-gbq"
version = "0.1.1a6"
description = "A Google BigQuery plug-in for dabapush"
authors = ["Philipp Kessling <p.kessling@leibniz-hbi.de>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
dabapush = "^0.4.0a4"
google-cloud-bigquery = "^3.27.0"
tqdm = "*"
ujson = "*"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
isort = "^5.13.2"
pre-commit = "^4.0.1"
pytest-cov = "^6.0.0"
pylint = "^3.3.1"
pytest-html = "^4.1.1"
black = "^24.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"schemagen" = "dabapush_gbq.schema_generator:main"
[tool.poetry.plugins.dabapush_writers]
"GBQ" = "dabapush_gbq.dabapush_gbq:GBQWriterConfiguration"
[tool.pytest.ini_options]
addopts = "--cov-report html:tests/coverage --cov=dabapush_gbq --capture=sys"
[tool.pylint.messages_control]
disable=["invalid-name"]