2025-08-23 19:18:29 +08:00
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=64.0.0", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "autoterminal"
|
2025-08-23 20:29:00 +08:00
|
|
|
|
version = "0.1.1"
|
2025-08-23 19:18:29 +08:00
|
|
|
|
description = "智能终端工具,基于LLM将自然语言转换为终端命令(create by claude 4 sonnet)"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "wds2dxh", email = "wdsnpshy@163.com"}
|
|
|
|
|
]
|
|
|
|
|
license = {text = "MIT"}
|
|
|
|
|
keywords = ["terminal", "ai", "llm", "command-line", "automation"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Topic :: System :: Systems Administration",
|
|
|
|
|
"Topic :: Utilities",
|
|
|
|
|
]
|
|
|
|
|
dependencies = [
|
|
|
|
|
"openai>=1.0.0"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
2025-08-23 20:25:42 +08:00
|
|
|
|
Homepage = "http://cloud-home.dxh-wds.top:20100/w/autoterminal"
|
|
|
|
|
Repository = "http://cloud-home.dxh-wds.top:20100/w/autoterminal"
|
|
|
|
|
Issues = "http://cloud-home.dxh-wds.top:20100/w/autoterminal/issues"
|
2025-08-23 19:18:29 +08:00
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
at = "autoterminal.main:main"
|
|
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
|
|
|
|
"twine>=6.1.0",
|
|
|
|
|
]
|