""" Setup configuration for Cognitive AI Agent """ from setuptools import setup, find_packages with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( name="cognitive-agent", version="1.0.0", author="AI Research", description="A human-like cognitive AI agent with memory, reasoning, and self-reflection", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/yourusername/cognitive-agent", packages=find_packages(), classifiers=[ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], python_requires=">=3.9", install_requires=[ "numpy>=1.24.0", "pydantic>=2.0.0", ], extras_require={ "web": ["gradio>=3.50.0"], "embeddings": ["sentence-transformers>=2.2.0"], "anthropic": ["anthropic>=0.20.0"], "openai": ["openai>=1.0.0"], "dev": [ "pytest>=7.0.0", "pytest-cov>=4.0.0", "black>=23.0.0", "isort>=5.0.0", ], }, )