pqgd 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.
pqgd-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Piqued AI, LLC
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.
pqgd-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: pqgd
3
+ Version: 0.0.1
4
+ Summary: Context curation for AI. Zero dependencies. One Python file.
5
+ Project-URL: Homepage, https://github.com/Piqued-AI/pqgd
6
+ Project-URL: Repository, https://github.com/Piqued-AI/pqgd
7
+ Project-URL: Issues, https://github.com/Piqued-AI/pqgd/issues
8
+ Author-email: Piqued AI <oss@pqdc.dev>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: ai,cli,context,git,llm,pqdc,repo
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Software Development :: Build Tools
22
+ Requires-Python: >=3.11
23
+ Description-Content-Type: text/markdown
24
+
25
+ # pqgd
26
+
27
+ **Context curation for AI. Zero dependencies. One Python file.**
28
+
29
+ pqgd (pronounced "packaged") generates structured snapshots of your codebase for AI context windows. Directory trees, language-hinted code fences, token estimates, and six git diff modes — all from a single Python file with zero external dependencies.
30
+
31
+ ## Status
32
+
33
+ pqgd is in active development. First public release coming soon.
34
+
35
+ ## Links
36
+
37
+ - **Repository:** [github.com/Piqued-AI/pqgd](https://github.com/Piqued-AI/pqgd)
38
+ - **Ecosystem:** [pqdc.dev](https://pqdc.dev)
39
+ - **Contact:** oss@pqdc.dev
40
+
41
+ ## License
42
+
43
+ MIT — Piqued AI, LLC
pqgd-0.0.1/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # pqgd
2
+
3
+ **Context curation for AI. Zero dependencies. One Python file.**
4
+
5
+ pqgd (pronounced "packaged") generates structured snapshots of your codebase for AI context windows. Directory trees, language-hinted code fences, token estimates, and six git diff modes — all from a single Python file with zero external dependencies.
6
+
7
+ ## Status
8
+
9
+ pqgd is in active development. First public release coming soon.
10
+
11
+ ## Links
12
+
13
+ - **Repository:** [github.com/Piqued-AI/pqgd](https://github.com/Piqued-AI/pqgd)
14
+ - **Ecosystem:** [pqdc.dev](https://pqdc.dev)
15
+ - **Contact:** oss@pqdc.dev
16
+
17
+ ## License
18
+
19
+ MIT — Piqued AI, LLC
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pqgd"
7
+ version = "0.0.1"
8
+ description = "Context curation for AI. Zero dependencies. One Python file."
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.11"
12
+ authors = [
13
+ { name = "Piqued AI", email = "oss@pqdc.dev" },
14
+ ]
15
+ keywords = ["ai", "context", "git", "llm", "cli", "repo", "pqdc"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Environment :: Console",
19
+ "Intended Audience :: Developers",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Operating System :: OS Independent",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ "Topic :: Software Development :: Build Tools",
27
+ ]
28
+
29
+ [project.urls]
30
+ Homepage = "https://github.com/Piqued-AI/pqgd"
31
+ Repository = "https://github.com/Piqued-AI/pqgd"
32
+ Issues = "https://github.com/Piqued-AI/pqgd/issues"
33
+
34
+ [project.scripts]
35
+ pqgd = "pqgd:main"
@@ -0,0 +1,7 @@
1
+ """pqgd — Context curation for AI."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ def main():
7
+ print("pqgd v0.0.1 — coming soon. https://github.com/Piqued-AI/pqgd")