machine-learning/feature-store/pyproject.toml
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "3.12.x"
feast = "0.40.1"
[tool.poetry.group.dev.dependencies]
poethepoet = "0.29.0"
pytest = "8.3.3"
pytest-cov = "5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
test = "pytest --verbose --verbose"
test-coverage = "pytest --cov=. --cov-report=xml"
inspect-raw-data = "python inspect_raw_data.py"
feast-apply = { shell = "cd driver_features && feast apply" }
generate-training-data = "python generate_training_data.py"
materialize-features = { shell = "cd driver_features && feast materialize-incremental $(date -u +\"%Y-%m-%dT%H:%M:%S\")" }
inspect-features = "python inspect_materialized_features.py"
fetch-features = "python fetch_features.py"
fetch-features-by-service = "python fetch_features_by_service.py"
feast-ui = { shell = "cd driver_features && feast ui" }