From dca1bc621f5832ad035acf0906905caee0f80c87 Mon Sep 17 00:00:00 2001 From: Oleksandr Kozachuk Date: Sat, 9 Sep 2023 21:22:41 +0200 Subject: [PATCH] Add Jinja2 as preparation for pipes. --- requirements.txt | 1 + setup.py | 9 +++------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0762ecf..6682c66 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ openai PyYAML argcomplete pytest +Jinja2 diff --git a/setup.py b/setup.py index a311605..3eda908 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,8 @@ from setuptools import setup, find_packages with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() +with open("requirements.txt", "r") as fh: + install_requirements = [line.strip() for line in fh] setup( name="ChatMastermind", @@ -28,12 +30,7 @@ setup( "Topic :: Utilities", "Topic :: Text Processing", ], - install_requires=[ - "openai", - "PyYAML", - "argcomplete", - "pytest", - ], + install_requires=install_requirements, python_requires=">=3.9", test_suite="tests", entry_points={