muralipala1504 commited on
Commit
505d1aa
·
1 Parent(s): 6f416eb

Add setup.py to make deepshell installable

Browse files
Files changed (1) hide show
  1. deepshell-backend/setup.py +21 -0
deepshell-backend/setup.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="deepshell",
5
+ version="1.0.0",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "typer>=0.9.0",
9
+ "rich>=13.0.0",
10
+ "litellm==1.74.9.post1",
11
+ "python-dotenv>=0.19.0",
12
+ "prompt-toolkit>=3.0.0",
13
+ "pydantic>=2.0.0",
14
+ "click>=8.0.0",
15
+ ],
16
+ entry_points={
17
+ "console_scripts": [
18
+ "deepshell=deepshell.cli:main", # Adjust if your CLI entry point differs
19
+ ],
20
+ },
21
+ )