forked from Holmeswww/AgentKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 995 Bytes
/
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
import setuptools
import pkg_resources
import pathlib
PKG_NAME = "agentkit-llm"
VERSION = "0.1.5"
EXTRAS = {
"logging": ["wandb"],
"all": ["wandb", "openai", "anthropic", "tiktoken"],
}
setuptools.setup(
name=PKG_NAME,
version=VERSION,
author="AgentKit Team",
description='A LLM prompting framework for LLM agents',
url="https://github.com/Holmeswww/AgentKit",
long_description=pathlib.Path('README.md').read_text(),
long_description_content_type='text/markdown',
packages=setuptools.find_namespace_packages('src'),
package_dir={'': 'src'},
entry_points={'console_scripts': ['agentkit=agentkit.run_gui:main']},
install_requires = ['colorama', 'numpy'],
extras_require=EXTRAS,
include_package_data=True,
license="CC-BY-4.0-Attribution",
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)