- AI-powered shell command generator using DeepSeek V3 - Support for natural language to shell command conversion - Secure configuration management with .env files - Package structure with uv tool installation support - Chinese and English language support - Configuration validation and error handling
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[project]
|
|
name = "ai-shell"
|
|
version = "0.1.0"
|
|
description = "AI-powered shell command generator using DeepSeek V3"
|
|
authors = [
|
|
{name = "AI Shell Team", email = "ai-shell@example.com"}
|
|
]
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
keywords = ["ai", "shell", "command", "generator", "deepseek"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Shells",
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pydantic-ai",
|
|
"openai",
|
|
"requests>=2.32.4",
|
|
"python-dotenv>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
ai = "ai_shell.main:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/your-username/ai-shell"
|
|
Repository = "https://github.com/your-username/ai-shell"
|
|
Issues = "https://github.com/your-username/ai-shell/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["ai_shell"]
|
|
|
|
[tool.hatch.version]
|
|
path = "ai_shell/__init__.py"
|
|
|
|
# UV 配置已移至 uv.toml 文件
|