exceltools/pyproject.toml
2026-05-24 14:36:48 +08:00

32 lines
565 B
TOML

[project]
name = "excel2pdf"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"openpyxl>=3.1.5",
"pillow>=12.2.0",
"pywin32>=311",
]
[dependency-groups]
dev = [
"ruff>=0.15.12",
]
[[tool.uv.index]]
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["ok.py", "main.py"]
[project.scripts]
abc = "main:main"
hello = "ok:hello"