-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (32 loc) · 1.14 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
from setuptools import setup
readme = ""
with open("README.md", "r") as fh:
readme = fh.read()
# search for any lines that contain <img and remove them
readme = readme.split("\n")
readme = [line for line in readme if "<img" not in line]
# now join all the lines back together
readme = "\n".join(readme)
setup(
name="agentaction",
version="0.1.7",
description="Action chaining and history for agents",
long_description=readme, # added this line
long_description_content_type="text/markdown", # and this line
url="https://github.com/AutonomousResearchGroup/agentaction",
author="Moon",
author_email="[email protected]",
license="MIT",
packages=["agentaction"],
install_requires=["agentmemory"],
readme="README.md",
classifiers=[
"Development Status :: 5 - Production/Stable",
"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",
],
)