from setuptools import setup, find_packages

setup(
    name="crowe-logic",
    version="0.1.0",
    packages=find_packages(),
    install_requires=[
        "azure-ai-agents>=1.1.0",
        "azure-identity>=1.17.0",
        "click>=8.1.0",
        "rich>=13.0.0",
        "prompt-toolkit>=3.0.0",
        "python-dotenv>=1.0.0",
        "httpx>=0.27.0",
        "beautifulsoup4>=4.12.0",
    ],
    entry_points={
        "console_scripts": [
            "crowe-logic=cli.crowe_logic:main",
        ],
    },
    author="Michael Crowe",
    description="Crowe Logic — Universal AI Agent powered by gpt-oss-120b on Azure AI Foundry",
)
