folderfuse 0.0.1__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 FolderFuse Authors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.5
2
+ Name: folderfuse
3
+ Version: 0.0.1
4
+ Summary: Context preparation and packaging utility for Large Language Models.
5
+ Project-URL: Homepage, https://github.com/placeholder/folderfuse
6
+ Author-email: Your Name <your.email@example.com>
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ # FolderFuse
17
+
18
+ **FolderFuse** is a Python utility and CLI/GUI tool for packing, tokenizing, and preparing local codebases and documents as structured context for LLMs (Claude, Gemini, OpenAI, DeepSeek).
19
+
20
+ > *Status: Initial package namespace reservation. Full v0.1.0 release coming soon.*
@@ -0,0 +1,5 @@
1
+ # FolderFuse
2
+
3
+ **FolderFuse** is a Python utility and CLI/GUI tool for packing, tokenizing, and preparing local codebases and documents as structured context for LLMs (Claude, Gemini, OpenAI, DeepSeek).
4
+
5
+ > *Status: Initial package namespace reservation. Full v0.1.0 release coming soon.*
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "folderfuse"
7
+ version = "0.0.1"
8
+ description = "Context preparation and packaging utility for Large Language Models."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Your Name", email = "your.email@example.com" }
14
+ ]
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ "Topic :: Software Development :: Libraries :: Python Modules",
20
+ ]
21
+
22
+ [project.scripts]
23
+ folderfuse = "folderfuse.__main__:main"
24
+
25
+ [project.urls]
26
+ Homepage = "https://github.com/placeholder/folderfuse"
@@ -0,0 +1,3 @@
1
+ """FolderFuse - Context preparation and packaging utility for LLMs."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,5 @@
1
+ def main():
2
+ print("FolderFuse is successfully reserved. Full features coming soon.")
3
+
4
+ if __name__ == "__main__":
5
+ main()