-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (61 loc) · 1.23 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
64
65
66
67
68
69
[tool.poetry]
name = "producers"
version = "0.1.0"
description = ""
authors = ["Andres Plazas <[email protected]>"]
readme = "README.md"
packages = [{include = "producers", from = "./"}]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2.0.3"
kafka-python = "^2.0.2"
typer = {extras = ["all"], version = "^0.9.0"}
pyspark = "^3.4.1"
pyarrow = "^12.0.1"
grpcio = "^1.56.2"
pika = "^1.3.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.vscode
| \.pytest_cache
| build
| dist
| notebooks
)/
'''
[tool.isort]
profile = "black"
skip = [
".gitignore",
".dockerignore",
".vscode",
".venv",
".pytest_cache"
]
skip_gitignore = true
extend_skip = [".md", ".json", ".lock", ".ini"]
extend_skip_glob = ["notebooks/*"]
src_paths = ["src"]
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
disallow_any_generics = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
strict_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"