[project] name = "ai-shell" version = "0.2.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", "tomli>=1.2.0; python_version<'3.11'", ] [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 文件