Files
mytoolkit/pyproject.toml
T
Zhengshou Lai d428436fca chore: bump mytoolkit to 0.2.0 and read --version from package metadata
Align with xiaohe wheel deploy so VPS installs carry a clear package version.
2026-07-22 23:19:34 +08:00

36 lines
678 B
TOML

[project]
name = "mytoolkit"
version = "0.2.0"
description = "Personal CLI toolkit"
requires-python = ">=3.9"
dependencies = [
"click>=8.0",
"openai>=1.60",
"pillow>=11.3.0",
"pypdf>=6.10.1",
"python-docx>=1.1.0",
"requests>=2.32.0",
"websockets>=13.0",
]
[project.scripts]
mytoolkit = "mytoolkit.cli:main"
[dependency-groups]
dev = ["pytest>=8.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
cache_dir = "../../tmp/.pytest_cache"
[tool.hatch.build.targets.wheel]
packages = ["mytoolkit"]
[tool.ruff]
cache-dir = "../../tmp/.ruff_cache"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"