narcolepticchicken commited on
Commit
af24b37
·
verified ·
1 Parent(s): 10dd564

Upload setup.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. setup.py +5 -16
setup.py CHANGED
@@ -1,20 +1,9 @@
1
- """Setup for Agent Cost Optimizer."""
2
-
3
  from setuptools import setup, find_packages
4
-
5
  setup(
6
- name="agent-cost-optimizer",
7
- version="0.1.0",
8
- description="Universal Agent Cost Optimizer - reduce agent run costs while preserving quality",
9
- author="Agent Cost Optimizer Team",
10
  packages=find_packages(),
11
- install_requires=[
12
- "PyYAML>=6.0",
13
- ],
14
- python_requires=">=3.9",
15
- entry_points={
16
- "console_scripts": [
17
- "aco=aco.cli:main",
18
- ],
19
- },
20
  )
 
 
 
1
  from setuptools import setup, find_packages
 
2
  setup(
3
+ name="aco",
4
+ version="8.0.0",
 
 
5
  packages=find_packages(),
6
+ install_requires=["xgboost>=1.7","scikit-learn>=1.2","numpy>=1.24"],
7
+ entry_points={"console_scripts":["aco=aco.cli:main"]},
8
+ description="Agent Cost Optimizer: Universal control layer for autonomous agents",
 
 
 
 
 
 
9
  )