-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (35 loc) · 858 Bytes
/
pyproject.toml
File metadata and controls
45 lines (35 loc) · 858 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
[project]
name = "api-elt"
version = "0.1.0"
description = "ELT pipeline that fetches data from Fingrid API and loads into DuckDB"
requires-python = ">=3.11"
dependencies = [
"dlt[duckdb]>=1.23.0",
"python-dotenv>=1.2.2",
]
[project.optional-dependencies]
dev = [
"mypy>=1.19.1",
"pytest>=9.0.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.ruff]
target-version = "py311"
lint.select = ["E", "F", "I", "UP"]
lint.ignore = ["E501", "E701"] # line too long, multiple statements on one line
src = [".", "utils"]
[tool.ruff.lint.isort]
known-local-folder = ["utils"]
[tool.black]
line-length = 120
[tool.pytest.ini_options]
addopts = "-ra"
pythonpath = ["."]
[tool.coverage.paths]
source = [".", "utils"]
[tool.coverage.report]
show_missing = true