-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.19 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.19 KB
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
from setuptools import setup, find_packages
setup(
name="yeagerai-agent",
version="0.0.40",
description="The @yeagerai Agent is used to create your custom LangChain Agents on-the-fly.",
author="YeagerAI LLC",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
"langchain==0.0.135",
"openai",
"GitPython",
"click",
"python-dotenv",
],
entry_points={
"console_scripts": [
"yeagerai-agent = yeagerai.interfaces.gradio_chat:main",
],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)