Files
codewhale/pyproject.toml
T
Hunter Bown 6f1158a2d7 Initial release v0.1.0
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)
2026-01-20 08:57:35 -06:00

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"]