feat(synctool): 虚拟文件系统初步方案

This commit is contained in:
2025-12-21 18:48:25 +08:00
parent a2e12c7462
commit d8fc18166d
3 changed files with 6 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "heurams" name = "heurams"
version = "0.4.0" version = "0.4.3"
description = "Heuristic Assisted Memory Scheduler" description = "Heuristic Assisted Memory Scheduler"
license = {file = "LICENSE"} license = {file = "LICENSE"}
classifiers = [ classifiers = [

View File

@@ -0,0 +1,5 @@
""" vfs.py
得益于 FSSpec, 无需实现大部分虚拟文件系统的 Providers
"""
import fsspec

View File