forked from callmesora/llmops-python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.py
57 lines (42 loc) · 1.58 KB
/
projects.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""Project tasks for pyinvoke."""
# mypy: disable-error-code="arg-type"
# %% IMPORTS
import json
from invoke.context import Context
from invoke.tasks import call, task
# %% CONFIGS
PYTHON_VERSION = ".python-version"
REQUIREMENTS = "requirements.txt"
ENVIRONMENT = "python_env.yaml"
# %% TASKS
@task
def requirements(ctx: Context) -> None:
"""Export the project requirements file."""
ctx.run(f"poetry export --without-urls --without-hashes --output={REQUIREMENTS}")
@task(pre=[requirements])
def environment(ctx: Context) -> None:
"""Export the project environment file."""
with open(PYTHON_VERSION, "r") as reader:
python = reader.read().strip() # version
configuration: dict[str, object] = {"python": python}
with open(REQUIREMENTS, "r") as reader:
dependencies: list[str] = []
for line in reader:
dependency = line.split(" ")[0]
if "pywin32" not in dependency:
dependencies.append(dependency)
configuration["dependencies"] = dependencies
with open(ENVIRONMENT, "w") as writer:
# Safe as YAML is a superset of JSON
json.dump(configuration, writer, indent=4)
writer.write("\n") # add new line at the end
@task
def run(ctx: Context, job: str) -> None:
"""Run an mlflow project from the MLproject file."""
ctx.run(
f"poetry run mlflow run --experiment-name={ctx.project.repository}"
f" --run-name={job.capitalize()} -P job={job} ."
)
@task(pre=[environment, call(run, job="main")], default=True)
def all(_: Context) -> None:
"""Run all project tasks."""