Initial project structure
This commit is contained in:
parent
92032f67a4
commit
a7c884462e
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
__pycache__/
|
||||
*.pyc
|
||||
.env
|
||||
data/raw/*
|
||||
data/processed/*
|
||||
models/*.pkl
|
||||
.dvc/cache
|
||||
7870
poetry.lock
generated
Normal file
7870
poetry.lock
generated
Normal file
File diff suppressed because one or more lines are too long
22
pyproject.toml
Normal file
22
pyproject.toml
Normal 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"
|
||||
Loading…
x
Reference in New Issue
Block a user