Initial project structure

This commit is contained in:
paul.roost 2025-09-30 15:44:35 +02:00
parent 92032f67a4
commit a7c884462e
3 changed files with 7899 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
__pycache__/
*.pyc
.env
data/raw/*
data/processed/*
models/*.pkl
.dvc/cache

7870
poetry.lock generated Normal file

File diff suppressed because one or more lines are too long

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[project]
name = "mlops"
version = "0.1.0"
description = ""
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"great-expectations (>=1.6.3,<2.0.0) ; python_version == \"3.12\"",
"apache-airflow (>=3.1.0,<4.0.0)",
"scikit-learn (>=1.7.2,<2.0.0)",
"torch (>=2.8.0,<3.0.0)",
"mlflow (>=3.4.0,<4.0.0)",
"dvc (>=3.63.0,<4.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"