Updates the requirements on [datasets](https://github.com/huggingface/datasets), [gymnasium](https://github.com/Farama-Foundation/Gymnasium), [pillow](https://github.com/python-pillow/Pillow) and [duckduckgo-search](https://github.com/deedy5/duckduckgo_search) to permit the latest version. Updates `datasets` to 3.4.0 - [Release notes](https://github.com/huggingface/datasets/releases) - [Commits](https://github.com/huggingface/datasets/compare/3.2.0...3.4.0) Updates `gymnasium` to 1.1.1 - [Release notes](https://github.com/Farama-Foundation/Gymnasium/releases) - [Commits](https://github.com/Farama-Foundation/Gymnasium/compare/v1.0.0...v1.1.1) Updates `pillow` to 11.1.0 - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/10.4.0...11.1.0) Updates `duckduckgo-search` to 7.5.2 - [Release notes](https://github.com/deedy5/duckduckgo_search/releases) - [Commits](https://github.com/deedy5/duckduckgo_search/compare/v7.5.1...v7.5.2) --- updated-dependencies: - dependency-name: datasets dependency-type: direct:production dependency-group: version-all - dependency-name: gymnasium dependency-type: direct:production dependency-group: version-all - dependency-name: pillow dependency-type: direct:production dependency-group: version-all - dependency-name: duckduckgo-search dependency-type: direct:production dependency-group: version-all ... Signed-off-by: dependabot[bot] <support@github.com>
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="openmanus",
|
|
version="0.1.0",
|
|
author="mannaandpoem and OpenManus Team",
|
|
author_email="mannaandpoem@gmail.com",
|
|
description="A versatile agent that can solve various tasks using multiple tools",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/mannaandpoem/OpenManus",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"pydantic~=2.10.4",
|
|
"openai>=1.58.1,<1.67.0",
|
|
"tenacity~=9.0.0",
|
|
"pyyaml~=6.0.2",
|
|
"loguru~=0.7.3",
|
|
"numpy",
|
|
"datasets>=3.2,<3.5",
|
|
"html2text~=2024.2.26",
|
|
"gymnasium>=1.0,<1.2",
|
|
"pillow>=10.4,<11.2",
|
|
"browsergym~=0.13.3",
|
|
"uvicorn~=0.34.0",
|
|
"unidiff~=0.7.5",
|
|
"browser-use~=0.1.40",
|
|
"googlesearch-python~=1.3.0",
|
|
"aiofiles~=24.1.0",
|
|
"pydantic_core>=2.27.2,<2.28.0",
|
|
"colorama~=0.4.6",
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.12",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.12",
|
|
entry_points={
|
|
"console_scripts": [
|
|
"openmanus=main:main",
|
|
],
|
|
},
|
|
)
|