8d6ade2ab5
Pre-commit checks / pre-commit-check (push) Failing after 0s
Updates the requirements on [pydantic](https://github.com/pydantic/pydantic), [openai](https://github.com/openai/openai-python), [fastapi](https://github.com/fastapi/fastapi), [tiktoken](https://github.com/openai/tiktoken) and [pydantic-core](https://github.com/pydantic/pydantic-core) to permit the latest version. Updates `pydantic` to 2.11.7 - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.10.6...v2.11.7) Updates `openai` to 1.99.6 - [Release notes](https://github.com/openai/openai-python/releases) - [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/openai/openai-python/compare/v1.66.3...v1.99.6) Updates `fastapi` to 0.116.1 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.115.11...0.116.1) Updates `tiktoken` to 0.11.0 - [Release notes](https://github.com/openai/tiktoken/releases) - [Changelog](https://github.com/openai/tiktoken/blob/main/CHANGELOG.md) - [Commits](https://github.com/openai/tiktoken/compare/0.9.0...0.11.0) Updates `pydantic-core` to 2.38.0 - [Release notes](https://github.com/pydantic/pydantic-core/releases) - [Commits](https://github.com/pydantic/pydantic-core/compare/v2.27.2...v2.38.0) --- updated-dependencies: - dependency-name: pydantic dependency-version: 2.11.7 dependency-type: direct:production dependency-group: core-dependencies - dependency-name: openai dependency-version: 1.99.6 dependency-type: direct:production dependency-group: core-dependencies - dependency-name: fastapi dependency-version: 0.116.1 dependency-type: direct:production dependency-group: core-dependencies - dependency-name: tiktoken dependency-version: 0.11.0 dependency-type: direct:production dependency-group: core-dependencies - dependency-name: pydantic-core dependency-version: 2.38.0 dependency-type: direct:production dependency-group: core-dependencies ... 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/FoundationAgents/OpenManus",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"pydantic~=2.12.5",
|
|
"openai>=1.58.1,<2.15.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.42.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",
|
|
],
|
|
},
|
|
)
|