-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 885 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
41
42
43
44
45
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "gcp-sales-pipeline"
version = "0.1.0"
description = "Pipeline to join BigQuery product data and GCS sales data."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pandas>=2.2.0",
"google-cloud-bigquery>=3.20.0",
"google-cloud-storage>=2.13.0",
"pyarrow>=15.0.0",
"python-dotenv>=1.0.0",
"db-dtypes>=1.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-mock>=3.12.0",
"black>=24.0.0",
"flake8>=7.0.0",
"pre-commit>=3.7.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
gcp-sales-pipeline = "gcp_sales_pipeline.cli:main"
[tool.black]
line-length = 120
target-version = ["py310"]
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203", "W503"]