28 lines
504 B
TOML
28 lines
504 B
TOML
[project]
|
|
dependencies = []
|
|
description = "Add your description here"
|
|
name = "svfs"
|
|
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"]
|
|
|
|
[project.scripts]
|
|
vfspack = "svfs.cli.packer:pack"
|
|
vfsunpack = "svfs.cli.unpacker:unpack"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/svfs"]
|