File size: 507 Bytes
505d1aa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages

setup(
    name="deepshell",
    version="1.0.0",
    packages=find_packages(),
    install_requires=[
        "typer>=0.9.0",
        "rich>=13.0.0",
        "litellm==1.74.9.post1",
        "python-dotenv>=0.19.0",
        "prompt-toolkit>=3.0.0",
        "pydantic>=2.0.0",
        "click>=8.0.0",
    ],
    entry_points={
        "console_scripts": [
            "deepshell=deepshell.cli:main",  # Adjust if your CLI entry point differs
        ],
    },
)