-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
39 lines (36 loc) · 1.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup
long_description = ""
with open("README.md", "r") as fh:
long_description = fh.read()
long_description = long_description.split('\n')
long_description = [line for line in long_description if not '<img' in line]
long_description = '\n'.join(long_description)
install_requires = [
"chromadb",
"agentlogger",
"psycopg2-binary",
"python-dotenv"
]
setup(
name='agentmemory',
version='0.4.8',
description='Easy-to-use memory for agents, document search, knowledge graphing and more.',
long_description=long_description, # added this line
long_description_content_type="text/markdown", # and this line
url='https://github.com/AutonomousResearchGroup/agentmemory',
author='Moon',
author_email='[email protected]',
license='MIT',
packages=['agentmemory'],
install_requires=install_requires,
readme = "README.md",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'
],
)