#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name="context-manager", version="1.0.0", description="Sistema local de gestión de contexto para IA", author="TZZR System", packages=find_packages(), python_requires=">=3.9", install_requires=[ "psycopg2-binary>=2.9.0", "pyyaml>=6.0", "requests>=2.28.0", ], extras_require={ "anthropic": ["anthropic>=0.18.0"], "openai": ["openai>=1.0.0"], "all": ["anthropic>=0.18.0", "openai>=1.0.0"], "dev": ["pytest>=7.0.0", "black>=23.0.0", "mypy>=1.0.0"], }, entry_points={ "console_scripts": [ "context-manager=src.cli:main", ], }, classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ], )