-
Notifications
You must be signed in to change notification settings - Fork 86
/
setup.py
54 lines (53 loc) · 1.57 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
setup(
name='agent_s',
version='0.1.0',
description='A library for creating general purpose GUI agents using multimodal LLMs.',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Simular AI',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'backoff',
'pandas',
'openai',
'torch',
'torchvision',
'transformers',
'anthropic',
'fastapi',
'uvicorn',
'paddleocr',
'paddlepaddle',
'together',
'scikit-learn',
'websockets',
'tiktoken',
'pyobjc; platform_system == "Darwin"',
'pyautogui',
'toml'
],
entry_points={
'console_scripts': [
'agent_s=agent_s.cli_app:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='ai, llm, gui, agent, multimodal',
project_urls={
'Source': 'https://github.com/simular-ai/Agent-S',
'Bug Reports': 'https://github.com/simular-ai/Agent-S/issues',
},
python_requires='>=3.9',
)