HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //opt/agenticSeek/setup.py
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setup(
    name="agenticSeek",
    version="0.1.0",
    author="Fosowl",
    author_email="mlg.fcu@gmail.com",
    description="The open, local alternative to ManusAI",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/Fosowl/agenticSeek",
    packages=find_packages(),
    include_package_data=True,
    install_requires=[
        "fastapi>=0.115.12",
        "celery>=5.5.1",
        "uvicorn>=0.34.0",
        "flask>=3.1.0",
        "aiofiles>=24.1.0",
        "pydantic>=2.10.6",
        "pydantic_core>=2.27.2",
        "requests>=2.31.0",
        "sacremoses>=0.0.53",
        "numpy>=1.24.4",
        "colorama>=0.4.6",
        "python-dotenv>=1.0.0",
        "playsound>=1.3.0",
        "soundfile>=0.13.1",
        "transformers>=4.46.3",
        "torch>=2.4.1",
        "ollama>=0.4.7",
        "scipy>=1.9.3",
        "kokoro>=0.7.12",
        "protobuf>=3.20.3",
        "termcolor>=2.5.0",
        "ipython>=8.34.0",
        "librosa>=0.10.2.post1",
        "selenium>=4.29.0",
        "markdownify>=1.1.0",
        "text2emotion>=0.0.5",
        "python-dotenv>=1.0.0",
        "adaptive-classifier>=0.0.10",
        "langid>=1.1.6",
        "chromedriver-autoinstaller>=0.6.4",
        "httpx>=0.27,<0.29",
        "anyio>=3.5.0,<5",
        "distro>=1.7.0,<2",
        "jiter>=0.4.0,<1",
        "fake_useragent>=2.1.0",
        "selenium_stealth>=1.0.6",
        "undetected-chromedriver>=3.5.5",
        "sentencepiece>=0.2.0",
        "openai",
        "sniffio",
        "tqdm>4"
    ],
    extras_require={
        "chinese": [
            "ordered_set",
            "pypinyin",
            "cn2an",
            "jieba",
        ],
    },
    entry_points={
        "console_scripts": [
            "agenticseek=main:main",
        ],
    },
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
        "Operating System :: OS Independent",
    ],
    python_requires=">=3.9",
)