asimov.py 26.0.0.dev1__cp313-cp313-macosx_11_0_arm64.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.
asimov/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ # This is free and unencumbered software released into the public domain.
2
+
3
+ """ASIMOV Software Development Kit (SDK) for Python"""
4
+
5
+ import sys
6
+
7
+ assert sys.version_info >= (3, 10), "ASIMOV.py requires Python 3.10+"
asimov/py.typed ADDED
File without changes
Binary file
asimov/sdk.pyi ADDED
@@ -0,0 +1,4 @@
1
+ # This is free and unencumbered software released into the public domain.
2
+
3
+ __version__: str
4
+ __version_tuple__: tuple[int, int, int, str | None]
@@ -0,0 +1,100 @@
1
+ Metadata-Version: 2.4
2
+ Name: asimov.py
3
+ Version: 26.0.0.dev1
4
+ Classifier: Development Status :: 2 - Pre-Alpha
5
+ Classifier: Environment :: Console
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Intended Audience :: Information Technology
8
+ Classifier: License :: Public Domain
9
+ Classifier: Natural Language :: English
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Topic :: Software Development :: Libraries
13
+ Requires-Dist: pydantic>=2
14
+ License-File: UNLICENSE
15
+ Summary: ASIMOV Software Development Kit (SDK) for Python
16
+ Keywords:
17
+ Author-email: ASIMOV Systems <support@asimov.systems>
18
+ License-Expression: Unlicense
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
21
+ Project-URL: Changelog, https://github.com/asimov-platform/asimov.py/blob/master/CHANGES.md
22
+ Project-URL: Documentation, https://github.com/asimov-platform/asimov.py/blob/master/README.md
23
+ Project-URL: Homepage, https://asimov.sh
24
+ Project-URL: Issues, https://github.com/asimov-platform/asimov.py/issues
25
+ Project-URL: Releases, https://github.com/asimov-platform/asimov.py/releases
26
+ Project-URL: Repository, https://github.com/asimov-platform/asimov.py
27
+
28
+ # ASIMOV Software Development Kit (SDK) for Python
29
+
30
+ [![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
31
+ [![Compatibility](https://img.shields.io/badge/python-3.9%2B-blue)](https://endoflife.date/python)
32
+ [![Package](https://img.shields.io/pypi/v/asimov.py)](https://pypi.org/project/asimov.py/)
33
+
34
+ **[ASIMOV] is a polyglot development platform for
35
+ [trustworthy neurosymbolic machine intelligence].**
36
+
37
+ <br/>
38
+
39
+ <sub>
40
+
41
+ [[Features](#-features)] |
42
+ [[Prerequisites](#%EF%B8%8F-prerequisites)] |
43
+ [[Installation](#%EF%B8%8F-installation)] |
44
+ [[Examples](#-examples)] |
45
+ [[Reference](#-reference)] |
46
+ [[Development](#%E2%80%8D-development)]
47
+
48
+ </sub>
49
+
50
+ ## ✨ Features
51
+
52
+ - Defines [flow-based] [program patterns] for refining data into knowledge.
53
+ - Implements a [module system] enabling an ecosystem of [modules].
54
+ - Enables dataflow systems through reusable components called blocks.
55
+ - Cuts red tape: 100% free and unencumbered public domain software.
56
+
57
+ ## 🛠️ Prerequisites
58
+
59
+ - [Python](https://python.org) 3.10+
60
+
61
+ ## ⬇️ Installation
62
+
63
+ ### Installation via PyPI
64
+
65
+ ```bash
66
+ pip install asimov.py
67
+ ```
68
+
69
+ ## 👉 Examples
70
+
71
+ ### Importing the SDK
72
+
73
+ ```python
74
+ from asimov import *
75
+ ```
76
+
77
+ ## 📚 Reference
78
+
79
+ ## 👨‍💻 Development
80
+
81
+ ```bash
82
+ git clone https://github.com/asimov-platform/asimov.py.git
83
+ ```
84
+
85
+ ---
86
+
87
+ [![Share on X](https://img.shields.io/badge/share%20on-x-03A9F4?logo=x)](https://x.com/intent/post?url=https://github.com/asimov-platform/asimov.py&text=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
88
+ [![Share on Reddit](https://img.shields.io/badge/share%20on-reddit-red?logo=reddit)](https://reddit.com/submit?url=https://github.com/asimov-platform/asimov.py&title=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
89
+ [![Share on Hacker News](https://img.shields.io/badge/share%20on-hn-orange?logo=ycombinator)](https://news.ycombinator.com/submitlink?u=https://github.com/asimov-platform/asimov.py&t=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
90
+ [![Share on Facebook](https://img.shields.io/badge/share%20on-fb-1976D2?logo=facebook)](https://www.facebook.com/sharer/sharer.php?u=https://github.com/asimov-platform/asimov.py)
91
+ [![Share on LinkedIn](https://img.shields.io/badge/share%20on-linkedin-3949AB?logo=linkedin)](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/asimov-platform/asimov.py)
92
+
93
+ [ASIMOV]: https://asimov.sh
94
+ [ASIMOV.py]: https://github.com/asimov-platform/asimov.py
95
+ [flow-based]: https://github.com/artob/awesome-fbp
96
+ [modules]: https://github.com/asimov-modules
97
+ [module system]: https://asimov-specs.github.io
98
+ [program patterns]: https://asimov-specs.github.io/program-patterns/
99
+ [trustworthy neurosymbolic machine intelligence]: https://asimov.blog/introducing-asimov/
100
+
@@ -0,0 +1,8 @@
1
+ asimov/__init__.py,sha256=Hk6Fe4gjiai5OYApSQPgdTe35Heyu895UNpsY4w5xvY,213
2
+ asimov/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ asimov/sdk.cpython-313-darwin.so,sha256=z8ay_sKzJVk9lecwte11oUKVMMP9gx0gDPq_hA_xQGQ,355296
4
+ asimov/sdk.pyi,sha256=nnScgbDZMjtYg0ciZAXWGjbfbnDxb8Gd2cgtGQPJTFQ,144
5
+ asimov_py-26.0.0.dev1.dist-info/METADATA,sha256=WTfRGw_Ip9Ef95Ep0kk11bbrjzjIGE1jKp-iyZvrV7s,4015
6
+ asimov_py-26.0.0.dev1.dist-info/WHEEL,sha256=V0PyzvBcSARU334gfbMpVsvFu6xR7hFdhQVohqdzf7E,105
7
+ asimov_py-26.0.0.dev1.dist-info/licenses/UNLICENSE,sha256=tQZYOMusRS38hVum5uAxSBrSxoQG9w0h6tkyE3RlPmw,1212
8
+ asimov_py-26.0.0.dev1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.11.5)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-macosx_11_0_arm64
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <https://unlicense.org/>