-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
63 lines (54 loc) · 1.11 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "movie-ratings-streaming"
version = "0.2.0"
description = "Spark Structured Streaming data pipeline that processes movie ratings data in real-time"
authors = ["Guido Kosloff Gancedo <guidokosloff@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.12"
pyspark = "~3.5.3"
delta-spark = "~3.2.1"
[tool.poetry.group.dev.dependencies]
black = "~24.10.0"
ruff = "~0.8.3"
mypy = "~1.13.0"
isort = "~5.13.2"
confluent-kafka = "~2.6.1"
requests = "~2.32.3"
fastavro = "~1.9.7"
pre-commit = "~4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
[tool.coverage.run]
branch = true
source = ["movies_etl"]
[tool.coverage.report]
show_missing = true
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.ruff]
line-length = 120