Skip to content

Commit

Permalink
Merge branch 'postgres' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Aug 9, 2023
2 parents 8e24899 + 28047b9 commit ed55b46
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@
long_description = [line for line in long_description if not '<img' in line]
long_description = '\n'.join(long_description)

with open('requirements.txt') as f:
required = f.read().splitlines()
install_requires = [
"chromadb",
"agentlogger",
"psycopg2-binary",
"sentence_transformers",
"python-dotenv"
]

setup(
name='agentmemory',
Expand All @@ -21,7 +26,7 @@
author_email='[email protected]',
license='MIT',
packages=['agentmemory'],
install_requires=required,
install_requires=install_requires,
readme = "README.md",
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit ed55b46

Please sign in to comment.