-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathsetup.py
56 lines (55 loc) · 1.79 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
55
56
from setuptools import find_packages, setup
setup(
name="gui-agents",
version="0.2.2",
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(),
install_requires=[
"numpy",
"backoff",
"pandas",
"openai",
"anthropic",
"fastapi",
"uvicorn",
"paddleocr",
"paddlepaddle",
"together",
"scikit-learn",
"websockets",
"tiktoken",
"selenium",
'pyobjc; platform_system == "Darwin"',
"pyautogui",
"toml",
"pytesseract",
'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_s1=gui_agents.s1.cli_app:main",
"agent_s2=gui_agents.s2.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",
)