-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 759 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 759 Bytes
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
from setuptools import find_packages, setup
def get_requires():
with open("requirements.txt", "r", encoding="utf-8") as f:
file_content = f.read()
lines = [
line.strip()
for line in file_content.strip().split("\n")
if not line.startswith("#")
]
return lines
setup(
name="agentlite-llm",
version="0.1.12",
url="https://github.com/SalesforceAIResearch/AgentLite",
description="Light Library for Building LLM Agent System",
packages=find_packages(exclude=["test*", "app*", "doc*", "example"]),
python_requires=">=3.9",
install_requires=get_requires(),
license="Apache License 2.0",
author="Zhiwei Liu",
author_email="zhiweiliu@salesforce.com",
)