6f1158a2d7
DeepSeek TUI - Unofficial terminal UI + CLI for DeepSeek models. Features: - Interactive TUI with multiple modes (Normal, Plan, Agent, YOLO, RLM, Duo) - Comprehensive tool access with approval gating - File operations, shell execution, task management - Sub-agent system for parallel work - MCP integration for external tool servers - Session management and skills system - Cross-platform support (macOS, Linux, Windows) 🤖 Generated with [Claude Code](https://claude.ai/code)
32 lines
800 B
TOML
32 lines
800 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "DeepSeek-CLI"
|
|
version = "0.0.1"
|
|
description = "Unofficial DeepSeek CLI - downloads and runs the Rust binary"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
authors = [{ name = "Hmbown" }]
|
|
keywords = ["deepseek", "cli", "ai", "agent"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/Hmbown/DeepSeek-CLI"
|
|
Source = "https://github.com/Hmbown/DeepSeek-CLI"
|
|
|
|
[project.scripts]
|
|
deepseek-cli = "deepseek_cli.cli:main"
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "python"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["python"]
|