33 lines
576 B
TOML
33 lines
576 B
TOML
[project]
|
|
dependencies = []
|
|
description = "sqlite virtual file system"
|
|
name = "sqlite-vfs"
|
|
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 = [
|
|
"devmo",
|
|
]
|
|
|
|
[build-system]
|
|
build-backend = "hatchling.build"
|
|
requires = ["hatchling"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"twine>=4.0.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
vfspack = "sqlite_vfs.cli.packer:pack"
|
|
vfsunpack = "sqlite_vfs.cli.unpacker:unpack"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/sqlite_vfs"]
|