From 3575488e0abf4091c1f64b9e9579e70853eb13bf Mon Sep 17 00:00:00 2001 From: Eric Anderton Date: Tue, 7 Nov 2023 14:36:24 -0500 Subject: [PATCH] Updated project dependencies - Added requirements to pyproject.toml - Pinned pydantic at legacy version for clean install --- pyproject.toml | 2 ++ requirements.txt | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 74a4117..a6ffa26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,8 @@ dependencies = [ "jinja2", "click", "pydantic", + "typer", + "rich" ] [project.readme] diff --git a/requirements.txt b/requirements.txt index 416e3ba..a10375c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,6 @@ pyyaml jinja2 click -pydantic +pydantic==1.* +typer +rich