| """Setup for Agent Cost Optimizer.""" | |
| from setuptools import setup, find_packages | |
| setup( | |
| name="agent-cost-optimizer", | |
| version="0.1.0", | |
| description="Universal Agent Cost Optimizer - reduce agent run costs while preserving quality", | |
| author="Agent Cost Optimizer Team", | |
| packages=find_packages(), | |
| install_requires=[ | |
| "PyYAML>=6.0", | |
| ], | |
| python_requires=">=3.9", | |
| entry_points={ | |
| "console_scripts": [ | |
| "aco=aco.cli:main", | |
| ], | |
| }, | |
| ) | |