mirror of
https://github.com/simular-ai/Agent-S.git
synced 2026-08-29 02:03:58 +08:00
74fda87142
Improvements on Rest API
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='gui-agents',
|
|
version='0.1.3',
|
|
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='eric@simular.ai',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
package_data={
|
|
'gui_agents': ['kb/*/*.json']
|
|
},
|
|
install_requires=[
|
|
'numpy',
|
|
'backoff',
|
|
'pandas',
|
|
'openai',
|
|
'anthropic',
|
|
'fastapi',
|
|
'uvicorn',
|
|
'paddleocr',
|
|
'paddlepaddle',
|
|
'together',
|
|
'scikit-learn',
|
|
'websockets',
|
|
'tiktoken',
|
|
'pyobjc; platform_system == "Darwin"',
|
|
'pyautogui',
|
|
'toml',
|
|
'pywinauto; platform_system == "Windows"', # Only for Windows
|
|
'pywin32; platform_system == "Windows"', # Only for Windows
|
|
],
|
|
extras_require={
|
|
'dev': [
|
|
'black' # Code formatter for linting
|
|
]
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'agent_s=gui_agents.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, <=3.12",
|
|
)
|