-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 979 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 979 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
[tool.poetry]
name = "db_zpark_pyf"
description = "A code-first approach to managing PySpark jobs, built on the pyfecto framework and geared for Databricks environments"
authors = ["fernanluyano"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "db_zpark_pyf", from = "src" }
]
version = "0.1.0"
[tool.poetry.dependencies]
python = "^3.11"
gitpython = "^3.1.0"
pyfecto = "^0.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^6.0.0"
black = "^25.1.0"
isort = "^6.0.0"
flake8 = "^7.1.2"
mypy = "^1.15.0"
pyspark = "^3.5.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[[tool.mypy.overrides]]
module = "pyfecto.*"
ignore_missing_imports = true