opencontext-profiles 0.1.0__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,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 OpenContext Runtime contributors
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.
22
+
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: opencontext-profiles
3
+ Version: 0.1.0
4
+ Summary: First-party technology profiles for OpenContext Runtime
5
+ Author: OpenContext Runtime maintainers
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/CesarMSFelipe/OpenContext-Runtime
8
+ Project-URL: Documentation, https://github.com/CesarMSFelipe/OpenContext-Runtime#readme
9
+ Project-URL: Issues, https://github.com/CesarMSFelipe/OpenContext-Runtime/issues
10
+ Project-URL: Source, https://github.com/CesarMSFelipe/OpenContext-Runtime
11
+ Keywords: ai,llm,context-engineering,technology-profiles
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Requires-Python: >=3.12
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: opencontext-core>=0.1.0
21
+ Dynamic: license-file
22
+
23
+ # opencontext-profiles
24
+
25
+ First-party technology profiles for OpenContext Runtime.
26
+
27
+ Profiles add stack-specific detection and hints without importing framework-specific dependencies
28
+ into `opencontext-core`.
@@ -0,0 +1,6 @@
1
+ # opencontext-profiles
2
+
3
+ First-party technology profiles for OpenContext Runtime.
4
+
5
+ Profiles add stack-specific detection and hints without importing framework-specific dependencies
6
+ into `opencontext-core`.
@@ -0,0 +1,5 @@
1
+ """First-party technology profiles for OpenContext Runtime."""
2
+
3
+ from opencontext_profiles.registry import first_party_profiles
4
+
5
+ __all__ = ["first_party_profiles"]