agentvfs-sdk 0.0.0a0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ .venv/
6
+ dist/
7
+ build/
8
+ .pytest_cache/
9
+ .mypy_cache/
10
+ .ruff_cache/
11
+
12
+ # Node
13
+ node_modules/
14
+ *.tsbuildinfo
15
+ .npm/
16
+
17
+ # Editors / OS
18
+ .DS_Store
19
+ .idea/
20
+ .vscode/
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentvfs-sdk
3
+ Version: 0.0.0a0
4
+ Project-URL: Homepage, https://github.com/agentvfs/agentvfs
5
+ Project-URL: Issues, https://github.com/agentvfs/agentvfs/issues
6
+ Author-email: Zecheng Zhang <zecheng@strukto.ai>
7
+ License-Expression: MIT
8
+ Keywords: agent-tools,ai-agents,filesystem,fuse,mcp,vfs
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Classifier: Topic :: System :: Filesystems
18
+ Requires-Python: >=3.10
@@ -0,0 +1 @@
1
+ __version__ = "0.0.0a0"
@@ -0,0 +1,39 @@
1
+ [project]
2
+ name = "agentvfs-sdk"
3
+ version = "0.0.0a0"
4
+ license = "MIT"
5
+ requires-python = ">=3.10"
6
+ authors = [
7
+ { name = "Zecheng Zhang", email = "zecheng@strukto.ai" },
8
+ ]
9
+ keywords = [
10
+ "ai-agents",
11
+ "filesystem",
12
+ "vfs",
13
+ "mcp",
14
+ "fuse",
15
+ "agent-tools",
16
+ ]
17
+ classifiers = [
18
+ "Development Status :: 1 - Planning",
19
+ "Intended Audience :: Developers",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Topic :: Software Development :: Libraries :: Python Modules",
26
+ "Topic :: System :: Filesystems",
27
+ ]
28
+ dependencies = []
29
+
30
+ [project.urls]
31
+ Homepage = "https://github.com/agentvfs/agentvfs"
32
+ Issues = "https://github.com/agentvfs/agentvfs/issues"
33
+
34
+ [build-system]
35
+ requires = ["hatchling"]
36
+ build-backend = "hatchling.build"
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["agentvfs"]