abstractvision 0.1.0__py3-none-any.whl

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,7 @@
1
+ """abstractvision: Generative vision capabilities for abstractcore.ai."""
2
+
3
+ __version__ = "0.1.0"
4
+ __author__ = "Laurent-Philippe Albou"
5
+ __email__ = "contact@abstractcore.ai"
6
+
7
+ # Core exports will be added as the project develops
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: abstractvision
3
+ Version: 0.1.0
4
+ Summary: Generative vision capabilities for abstractcore.ai
5
+ Home-page: https://github.com/abstractcore/abstractvision
6
+ Author: Laurent-Philippe Albou
7
+ Author-email: contact@abstractcore.ai
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: license-file
26
+ Dynamic: requires-python
27
+ Dynamic: summary
28
+
29
+ # abstractvision
30
+
31
+ A Python project designed to work with abstractcore.ai and enable generative capabilities for vision.
32
+
33
+ ## Overview
34
+
35
+ abstractvision provides vision-related generative capabilities as part of the abstractcore.ai ecosystem.
36
+
37
+ ## Installation
38
+
39
+ ```bash
40
+ pip install abstractvision
41
+ ```
42
+
43
+ ## Usage
44
+
45
+ ```python
46
+ from abstractvision import Vision
47
+
48
+ # Example usage coming soon
49
+ ```
50
+
51
+ ## Requirements
52
+
53
+ - Python >= 3.8
54
+
55
+ ## License
56
+
57
+ MIT License - see LICENSE file for details.
58
+
59
+ ## Author
60
+
61
+ Laurent-Philippe Albou
62
+
63
+ ## Contact
64
+
65
+ contact@abstractcore.ai
@@ -0,0 +1,6 @@
1
+ abstractvision/__init__.py,sha256=f2PwzsC1Waw08X-N0qOHe2pu1AHKOqVaW3OG4ZuKtjM,227
2
+ abstractvision-0.1.0.dist-info/licenses/LICENSE,sha256=ifO3lH7cJAMqNv7IWJlVUsJ_4FOBfoh1SkhzTkxQHd4,1079
3
+ abstractvision-0.1.0.dist-info/METADATA,sha256=h_46a2CyvDNaPyxaWU_ExPZ3WT46d6IngYGdokKvoyM,1463
4
+ abstractvision-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
+ abstractvision-0.1.0.dist-info/top_level.txt,sha256=ZWt-i-WRPiqmiSny1lXgfS4oeN60q--SaJOaS8ft5UQ,15
6
+ abstractvision-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Laurent-Philippe Albou
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 @@
1
+ abstractvision