deepseek-cli 0.2.3__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {deepseek_cli-0.2.3/src/deepseek_cli.egg-info → deepseek_cli-0.2.4}/PKG-INFO +1 -1
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/pyproject.toml +1 -1
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/setup.py +2 -2
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/cli/deepseek_cli.py +6 -4
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4/src/deepseek_cli.egg-info}/PKG-INFO +1 -1
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/LICENSE +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/MANIFEST.in +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/README.md +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/requirements.txt +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/setup.cfg +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/__init__.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/__main__.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/api/__init__.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/api/client.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/cli/__init__.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/config/__init__.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/config/settings.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/deepseek_cli.egg-info/SOURCES.txt +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/deepseek_cli.egg-info/dependency_links.txt +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/deepseek_cli.egg-info/entry_points.txt +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/deepseek_cli.egg-info/requires.txt +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/deepseek_cli.egg-info/top_level.txt +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/handlers/__init__.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/handlers/chat_handler.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/handlers/command_handler.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/handlers/error_handler.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/utils/__init__.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/utils/exceptions.py +0 -0
- {deepseek_cli-0.2.3 → deepseek_cli-0.2.4}/src/utils/version_checker.py +0 -0
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="deepseek-cli",
|
|
8
|
-
version="0.2.
|
|
8
|
+
version="0.2.4",
|
|
9
9
|
author="PierrunoYT",
|
|
10
10
|
author_email="pierrebruno@hotmail.ch",
|
|
11
11
|
description="A powerful CLI for interacting with DeepSeek's AI models",
|
|
@@ -40,7 +40,7 @@ setup(
|
|
|
40
40
|
],
|
|
41
41
|
entry_points={
|
|
42
42
|
"console_scripts": [
|
|
43
|
-
"deepseek=
|
|
43
|
+
"deepseek=cli.deepseek_cli:main",
|
|
44
44
|
],
|
|
45
45
|
},
|
|
46
46
|
package_data={
|
|
@@ -21,11 +21,13 @@ except ImportError:
|
|
|
21
21
|
|
|
22
22
|
# Simplified import handling with clear fallback chain
|
|
23
23
|
try:
|
|
24
|
-
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
24
|
+
# When installed via pip/pipx (package_dir={"": "src"})
|
|
25
|
+
from api.client import APIClient
|
|
26
|
+
from handlers.chat_handler import ChatHandler
|
|
27
|
+
from handlers.command_handler import CommandHandler
|
|
28
|
+
from handlers.error_handler import ErrorHandler
|
|
28
29
|
except ImportError:
|
|
30
|
+
# When running from source (development mode)
|
|
29
31
|
from src.api.client import APIClient
|
|
30
32
|
from src.handlers.chat_handler import ChatHandler
|
|
31
33
|
from src.handlers.command_handler import CommandHandler
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|