Files
doczyai-pipelines/airflow/pyproject.toml
T
Michael McGuinness 7cb0b485ad Merged in feature/unittestframe (pull request #240)
Unit Testing Framework

* emptyframe

* fixstatic

* save

* exampletest

* rmreqs

* rmUto


Approved-by: Alex Galarce
2024-10-22 13:45:53 +00:00

40 lines
719 B
TOML

[tool.poetry]
name = "airflow"
version = "0.1.0"
description = ""
authors = ["Michael McGuinness <mmcguinness@aarete.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "3.12.7"
apache-airflow = "2.10.2"
boto3 = "1.35.37"
pandas = "2.2.3"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
mypy = "^1.12.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py312']
[tool.mypy]
disable_error_code = ["import-not-found","import-untyped"]
install_types = true
non_interactive = true
[tool.pytest.ini_options]
testpaths = [
"tests"
]