-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 939 Bytes
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 939 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
46
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fr-transport-realtime-platform"
version = "0.1.0"
description = "Realtime transport lakehouse pipeline (Kafka + Spark + Airflow + S3)"
authors = [{ name = "Your Name" }]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pyspark>=3.5",
"kafka-python>=2.0",
"apache-airflow>=2.8",
"great-expectations>=0.18",
]
[tool.setuptools.packages.find]
where = ["src"]
# ---------------------------
# Pylint configuration
# ---------------------------
[tool.pylint.main]
py-version = "3.10"
jobs = 0
ignore = ["tests"]
[tool.pylint.format]
max-line-length = 100
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"too-few-public-methods",
]
[tool.pylint.design]
max-args = 8
max-locals = 20
max-returns = 6