Compare commits
1 Commits
pipes
..
f961ed7475
| Author | SHA1 | Date | |
|---|---|---|---|
| f961ed7475 |
@@ -106,7 +106,6 @@ celerybeat.pid
|
|||||||
.venv
|
.venv
|
||||||
env/
|
env/
|
||||||
venv/
|
venv/
|
||||||
.old/
|
|
||||||
ENV/
|
ENV/
|
||||||
env.bak/
|
env.bak/
|
||||||
venv.bak/
|
venv.bak/
|
||||||
|
|||||||
@@ -2,4 +2,3 @@ openai
|
|||||||
PyYAML
|
PyYAML
|
||||||
argcomplete
|
argcomplete
|
||||||
pytest
|
pytest
|
||||||
Jinja2
|
|
||||||
|
|||||||
@@ -2,8 +2,6 @@ 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",
|
||||||
@@ -30,7 +28,12 @@ setup(
|
|||||||
"Topic :: Utilities",
|
"Topic :: Utilities",
|
||||||
"Topic :: Text Processing",
|
"Topic :: Text Processing",
|
||||||
],
|
],
|
||||||
install_requires=install_requirements,
|
install_requires=[
|
||||||
|
"openai",
|
||||||
|
"PyYAML",
|
||||||
|
"argcomplete",
|
||||||
|
"pytest",
|
||||||
|
],
|
||||||
python_requires=">=3.9",
|
python_requires=">=3.9",
|
||||||
test_suite="tests",
|
test_suite="tests",
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|||||||
Reference in New Issue
Block a user