svfs/pyproject.toml

33 lines
576 B
TOML
Raw Permalink Normal View History

2025-11-07 20:52:44 +08:00
[project]
dependencies = []
2026-01-23 17:50:27 +08:00
description = "sqlite virtual file system"
name = "sqlite-vfs"
2025-11-07 20:52:44 +08:00
readme = "README.md"
requires-python = ">=3.7"
version = "0.1.0"
[[tool.uv.index]]
default = true
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[tool.uv.workspace]
members = [
2026-01-23 17:50:27 +08:00
"devmo",
2025-11-07 20:52:44 +08:00
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
2026-01-23 17:50:27 +08:00
[dependency-groups]
dev = [
"twine>=4.0.2",
]
2025-11-07 20:52:44 +08:00
[project.scripts]
2026-01-23 17:50:27 +08:00
vfspack = "sqlite_vfs.cli.packer:pack"
vfsunpack = "sqlite_vfs.cli.unpacker:unpack"
2025-11-07 20:52:44 +08:00
[tool.hatch.build.targets.wheel]
2026-01-23 17:50:27 +08:00
packages = ["src/sqlite_vfs"]