加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "clitheme._version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["*test*"]
[tool.setuptools.package-data]
"*" = ["*"]
[project]
name = "clitheme"
dynamic = ["version"]
authors = [
{ name="swiftycode", email="3291929745@qq.com" },
]
description = "A text theming library for command line applications"
readme = "README.en.md"
license = {text = "GNU General Public License v3 (GPLv3)"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Private :: Do Not Upload"
]
[project.scripts]
clitheme = "clitheme:cli._script_main"
clitheme-exec = "clitheme:exec._script_main"
clitheme-man = "clitheme:man._script_main"
[project.urls]
Repository = "https://gitee.com/swiftycode/clitheme"
Documentation = "https://gitee.com/swiftycode/clitheme/wikis/pages"
Issues = "https://gitee.com/swiftycode/clitheme/issues"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化