-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 783 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
with open("requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="agents",
version="0.4.1",
description="Yet another langchain-esque package to use language agents and compose agent-systems",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.9",
url="https://github.com/cdcai/multiagent",
author="Sean Browning",
author_email="sbrowning@cdc.gov",
license="MIT",
packages=find_packages(include=["agents", "agents.*"]),
install_requires=requirements,
tests_require=["pytest", "pytest-mock", "pytest_asyncio"],
)