Add Jinja2 as preparation for pipes.
This commit is contained in:
parent
5f29f60168
commit
dca1bc621f
@ -2,3 +2,4 @@ openai
|
|||||||
PyYAML
|
PyYAML
|
||||||
argcomplete
|
argcomplete
|
||||||
pytest
|
pytest
|
||||||
|
Jinja2
|
||||||
|
|||||||
9
setup.py
9
setup.py
@ -2,6 +2,8 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
with open("requirements.txt", "r") as fh:
|
||||||
|
install_requirements = [line.strip() for line in fh]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="ChatMastermind",
|
name="ChatMastermind",
|
||||||
@ -28,12 +30,7 @@ setup(
|
|||||||
"Topic :: Utilities",
|
"Topic :: Utilities",
|
||||||
"Topic :: Text Processing",
|
"Topic :: Text Processing",
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=install_requirements,
|
||||||
"openai",
|
|
||||||
"PyYAML",
|
|
||||||
"argcomplete",
|
|
||||||
"pytest",
|
|
||||||
],
|
|
||||||
python_requires=">=3.9",
|
python_requires=">=3.9",
|
||||||
test_suite="tests",
|
test_suite="tests",
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user