MaoShen commited on
Commit
2c06de3
·
verified ·
1 Parent(s): ad19ed9

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. requirements.txt +1 -1
  2. setup.py +10 -0
requirements.txt CHANGED
@@ -39,4 +39,4 @@ torch
39
  xlrd
40
  SpeechRecognition
41
  # 添加以下行来安装当前目录的包
42
- -e .
 
39
  xlrd
40
  SpeechRecognition
41
  # 添加以下行来安装当前目录的包
42
+ smolagents
setup.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="smolagents",
5
+ version="1.10.0.dev0",
6
+ description="🤗 smolagents: a barebones library for agents. Agents write python code to call tools or orchestrate other agents.",
7
+ packages=find_packages(where="src"),
8
+ package_dir={"": "src"},
9
+ python_requires=">=3.10",
10
+ )