-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (36 loc) · 887 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
[project]
name = "pyarrow-bigquery"
version = "0.5.6"
description = "An extension library to write to and read from BigQuery tables as PyArrow tables."
authors = [{ name = "Sebastian Pawluś" }]
readme = "README.md"
keywords = ["pyarrow", "bigquery"]
dependencies = [
"google-cloud-bigquery>=3,<5",
"google-cloud-bigquery-storage>=2,<3",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
"pyarrow<20",
"tenacity",
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"nox"
]
[project.license]
text = "MIT"
[build-system]
requires = ["setuptools>=40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src/"]
include = ["pyarrow.bigquery*"]
[[tool.mypy.overrides]]
module = ["pyarrow.*"]
ignore_missing_imports = true
[tool.ruff]
exclude = [".git"]
line-length = 120
indent-width = 4