asimov.py 24.0.0.dev0__tar.gz → 26.0.0.dev0__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.
- asimov_py-26.0.0.dev0/.gitignore +40 -0
- asimov_py-26.0.0.dev0/AUTHORS +1 -0
- {asimov_py-24.0.0.dev0 → asimov_py-26.0.0.dev0}/CHANGES.md +1 -1
- asimov_py-26.0.0.dev0/Makefile +7 -0
- asimov_py-26.0.0.dev0/PKG-INFO +100 -0
- asimov_py-26.0.0.dev0/README.md +74 -0
- asimov_py-26.0.0.dev0/VERSION +1 -0
- asimov_py-26.0.0.dev0/pyproject.toml +79 -0
- asimov_py-26.0.0.dev0/src/asimov/__init__.py +9 -0
- asimov_py-26.0.0.dev0/src/asimov/_version.py +34 -0
- asimov_py-26.0.0.dev0/src/asimov/py.typed +0 -0
- asimov_py-24.0.0.dev0/AUTHORS +0 -1
- asimov_py-24.0.0.dev0/MANIFEST.in +0 -5
- asimov_py-24.0.0.dev0/PKG-INFO +0 -82
- asimov_py-24.0.0.dev0/README.md +0 -54
- asimov_py-24.0.0.dev0/VERSION +0 -1
- asimov_py-24.0.0.dev0/pyproject.toml +0 -6
- asimov_py-24.0.0.dev0/setup.cfg +0 -9
- asimov_py-24.0.0.dev0/setup.py +0 -56
- asimov_py-24.0.0.dev0/src/asimov/__init__.py +0 -11
- asimov_py-24.0.0.dev0/src/asimov/sdk/__init__.py +0 -15
- asimov_py-24.0.0.dev0/src/asimov/sdk/lib.py +0 -3
- asimov_py-24.0.0.dev0/src/asimov/sdk/util.py +0 -3
- asimov_py-24.0.0.dev0/src/asimov.py.egg-info/PKG-INFO +0 -82
- asimov_py-24.0.0.dev0/src/asimov.py.egg-info/SOURCES.txt +0 -18
- asimov_py-24.0.0.dev0/src/asimov.py.egg-info/dependency_links.txt +0 -1
- asimov_py-24.0.0.dev0/src/asimov.py.egg-info/requires.txt +0 -4
- asimov_py-24.0.0.dev0/src/asimov.py.egg-info/top_level.txt +0 -1
- {asimov_py-24.0.0.dev0 → asimov_py-26.0.0.dev0}/UNLICENSE +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# macOS
|
|
2
|
+
.DS_Store
|
|
3
|
+
|
|
4
|
+
# Environment variables
|
|
5
|
+
.env
|
|
6
|
+
|
|
7
|
+
# JetBrains IntelliJ IDEA
|
|
8
|
+
.idea/
|
|
9
|
+
|
|
10
|
+
# Visual Studio Code
|
|
11
|
+
.vscode/
|
|
12
|
+
|
|
13
|
+
# Editor backup files
|
|
14
|
+
*~
|
|
15
|
+
|
|
16
|
+
# mypy artifacts
|
|
17
|
+
.mypy_cache/
|
|
18
|
+
|
|
19
|
+
# pytest artifacts
|
|
20
|
+
.pytest_cache/
|
|
21
|
+
|
|
22
|
+
# tox artifacts
|
|
23
|
+
.tox/
|
|
24
|
+
|
|
25
|
+
# Python object files
|
|
26
|
+
__pycache__/
|
|
27
|
+
*.py[cdo]
|
|
28
|
+
|
|
29
|
+
# Python distutils
|
|
30
|
+
build/
|
|
31
|
+
|
|
32
|
+
# Python setuptools
|
|
33
|
+
dist/
|
|
34
|
+
*.egg-info/
|
|
35
|
+
|
|
36
|
+
# hatch-vcs artifacts
|
|
37
|
+
**/_version.py
|
|
38
|
+
|
|
39
|
+
# MkDocs artifacts
|
|
40
|
+
.cache/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* Arto Bendiken <arto@asimov.systems>
|
|
@@ -5,4 +5,4 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
##
|
|
8
|
+
## 26.0.0.dev0 - 2026-02-01
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: asimov.py
|
|
3
|
+
Version: 26.0.0.dev0
|
|
4
|
+
Summary: ASIMOV Software Development Kit (SDK) for Python
|
|
5
|
+
Project-URL: Homepage, https://asimov.sh
|
|
6
|
+
Project-URL: Repository, https://github.com/asimov-platform/asimov.py
|
|
7
|
+
Project-URL: Changelog, https://github.com/asimov-platform/asimov.py/blob/master/CHANGES.md
|
|
8
|
+
Project-URL: Releases, https://github.com/asimov-platform/asimov.py/releases
|
|
9
|
+
Project-URL: Issues, https://github.com/asimov-platform/asimov.py/issues
|
|
10
|
+
Project-URL: Documentation, https://github.com/asimov-platform/asimov.py/blob/master/README.md
|
|
11
|
+
Author-email: ASIMOV Systems <support@asimov.systems>
|
|
12
|
+
License-Expression: Unlicense
|
|
13
|
+
License-File: UNLICENSE
|
|
14
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: Intended Audience :: Information Technology
|
|
18
|
+
Classifier: License :: Public Domain
|
|
19
|
+
Classifier: Natural Language :: English
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
23
|
+
Requires-Python: >=3.9
|
|
24
|
+
Requires-Dist: pydantic>=2
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
|
|
27
|
+
# ASIMOV Software Development Kit (SDK) for Python
|
|
28
|
+
|
|
29
|
+
[](https://unlicense.org)
|
|
30
|
+
[](https://endoflife.date/python)
|
|
31
|
+
[](https://pypi.org/project/asimov.py/)
|
|
32
|
+
|
|
33
|
+
**[ASIMOV] is a polyglot development platform for
|
|
34
|
+
[trustworthy neurosymbolic machine intelligence].**
|
|
35
|
+
|
|
36
|
+
<br/>
|
|
37
|
+
|
|
38
|
+
<sub>
|
|
39
|
+
|
|
40
|
+
[[Features](#-features)] |
|
|
41
|
+
[[Prerequisites](#%EF%B8%8F-prerequisites)] |
|
|
42
|
+
[[Installation](#%EF%B8%8F-installation)] |
|
|
43
|
+
[[Examples](#-examples)] |
|
|
44
|
+
[[Reference](#-reference)] |
|
|
45
|
+
[[Development](#%E2%80%8D-development)]
|
|
46
|
+
|
|
47
|
+
</sub>
|
|
48
|
+
|
|
49
|
+
## ✨ Features
|
|
50
|
+
|
|
51
|
+
- Defines [flow-based] [program patterns] for refining data into knowledge.
|
|
52
|
+
- Implements a [module system] enabling an ecosystem of [modules].
|
|
53
|
+
- Enables dataflow systems through reusable components called blocks.
|
|
54
|
+
- Supports opting out of any feature using comprehensive feature flags.
|
|
55
|
+
- Adheres to the Rust API Guidelines in its [naming conventions].
|
|
56
|
+
- Cuts red tape: 100% free and unencumbered public domain software.
|
|
57
|
+
|
|
58
|
+
## 🛠️ Prerequisites
|
|
59
|
+
|
|
60
|
+
- [Python](https://python.org) 3.9+ (included in macOS 12.6+)
|
|
61
|
+
|
|
62
|
+
## ⬇️ Installation
|
|
63
|
+
|
|
64
|
+
### Installation via PyPI
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
pip install asimov.py
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## 👉 Examples
|
|
71
|
+
|
|
72
|
+
### Importing the SDK
|
|
73
|
+
|
|
74
|
+
```python
|
|
75
|
+
from asimov import *
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## 📚 Reference
|
|
79
|
+
|
|
80
|
+
## 👨💻 Development
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
git clone https://github.com/asimov-platform/asimov.py.git
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
[](https://x.com/intent/post?url=https://github.com/asimov-platform/asimov.py&text=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
89
|
+
[](https://reddit.com/submit?url=https://github.com/asimov-platform/asimov.py&title=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
90
|
+
[](https://news.ycombinator.com/submitlink?u=https://github.com/asimov-platform/asimov.py&t=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
91
|
+
[](https://www.facebook.com/sharer/sharer.php?u=https://github.com/asimov-platform/asimov.py)
|
|
92
|
+
[](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/asimov-platform/asimov.py)
|
|
93
|
+
|
|
94
|
+
[ASIMOV]: https://asimov.sh
|
|
95
|
+
[ASIMOV.py]: https://github.com/asimov-platform/asimov.py
|
|
96
|
+
[flow-based]: https://github.com/artob/awesome-fbp
|
|
97
|
+
[modules]: https://github.com/asimov-modules
|
|
98
|
+
[module system]: https://asimov-specs.github.io
|
|
99
|
+
[program patterns]: https://asimov-specs.github.io/program-patterns/
|
|
100
|
+
[trustworthy neurosymbolic machine intelligence]: https://asimov.blog/introducing-asimov/
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# ASIMOV Software Development Kit (SDK) for Python
|
|
2
|
+
|
|
3
|
+
[](https://unlicense.org)
|
|
4
|
+
[](https://endoflife.date/python)
|
|
5
|
+
[](https://pypi.org/project/asimov.py/)
|
|
6
|
+
|
|
7
|
+
**[ASIMOV] is a polyglot development platform for
|
|
8
|
+
[trustworthy neurosymbolic machine intelligence].**
|
|
9
|
+
|
|
10
|
+
<br/>
|
|
11
|
+
|
|
12
|
+
<sub>
|
|
13
|
+
|
|
14
|
+
[[Features](#-features)] |
|
|
15
|
+
[[Prerequisites](#%EF%B8%8F-prerequisites)] |
|
|
16
|
+
[[Installation](#%EF%B8%8F-installation)] |
|
|
17
|
+
[[Examples](#-examples)] |
|
|
18
|
+
[[Reference](#-reference)] |
|
|
19
|
+
[[Development](#%E2%80%8D-development)]
|
|
20
|
+
|
|
21
|
+
</sub>
|
|
22
|
+
|
|
23
|
+
## ✨ Features
|
|
24
|
+
|
|
25
|
+
- Defines [flow-based] [program patterns] for refining data into knowledge.
|
|
26
|
+
- Implements a [module system] enabling an ecosystem of [modules].
|
|
27
|
+
- Enables dataflow systems through reusable components called blocks.
|
|
28
|
+
- Supports opting out of any feature using comprehensive feature flags.
|
|
29
|
+
- Adheres to the Rust API Guidelines in its [naming conventions].
|
|
30
|
+
- Cuts red tape: 100% free and unencumbered public domain software.
|
|
31
|
+
|
|
32
|
+
## 🛠️ Prerequisites
|
|
33
|
+
|
|
34
|
+
- [Python](https://python.org) 3.9+ (included in macOS 12.6+)
|
|
35
|
+
|
|
36
|
+
## ⬇️ Installation
|
|
37
|
+
|
|
38
|
+
### Installation via PyPI
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install asimov.py
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## 👉 Examples
|
|
45
|
+
|
|
46
|
+
### Importing the SDK
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
from asimov import *
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## 📚 Reference
|
|
53
|
+
|
|
54
|
+
## 👨💻 Development
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
git clone https://github.com/asimov-platform/asimov.py.git
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
[](https://x.com/intent/post?url=https://github.com/asimov-platform/asimov.py&text=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
63
|
+
[](https://reddit.com/submit?url=https://github.com/asimov-platform/asimov.py&title=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
64
|
+
[](https://news.ycombinator.com/submitlink?u=https://github.com/asimov-platform/asimov.py&t=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
65
|
+
[](https://www.facebook.com/sharer/sharer.php?u=https://github.com/asimov-platform/asimov.py)
|
|
66
|
+
[](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/asimov-platform/asimov.py)
|
|
67
|
+
|
|
68
|
+
[ASIMOV]: https://asimov.sh
|
|
69
|
+
[ASIMOV.py]: https://github.com/asimov-platform/asimov.py
|
|
70
|
+
[flow-based]: https://github.com/artob/awesome-fbp
|
|
71
|
+
[modules]: https://github.com/asimov-modules
|
|
72
|
+
[module system]: https://asimov-specs.github.io
|
|
73
|
+
[program patterns]: https://asimov-specs.github.io/program-patterns/
|
|
74
|
+
[trustworthy neurosymbolic machine intelligence]: https://asimov.blog/introducing-asimov/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
26.0.0.dev0
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# See: https://packaging.python.org/en/latest/tutorials/packaging-projects/
|
|
2
|
+
# See: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
|
|
3
|
+
|
|
4
|
+
[build-system]
|
|
5
|
+
requires = ["hatchling", "hatch-vcs"]
|
|
6
|
+
build-backend = "hatchling.build"
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "asimov.py"
|
|
10
|
+
description = "ASIMOV Software Development Kit (SDK) for Python"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
authors = [{ name = "ASIMOV Systems", email = "support@asimov.systems" }]
|
|
13
|
+
license = "Unlicense"
|
|
14
|
+
license-files = ["UNLICENSE"]
|
|
15
|
+
dynamic = ["version"]
|
|
16
|
+
|
|
17
|
+
requires-python = ">=3.9"
|
|
18
|
+
dependencies = ["pydantic>=2"]
|
|
19
|
+
|
|
20
|
+
keywords = []
|
|
21
|
+
classifiers = [
|
|
22
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
23
|
+
"Environment :: Console",
|
|
24
|
+
"Intended Audience :: Developers",
|
|
25
|
+
"Intended Audience :: Information Technology",
|
|
26
|
+
"License :: Public Domain",
|
|
27
|
+
"Natural Language :: English",
|
|
28
|
+
"Operating System :: OS Independent",
|
|
29
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
30
|
+
"Topic :: Software Development :: Libraries",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.optional-dependencies]
|
|
34
|
+
|
|
35
|
+
[project.urls]
|
|
36
|
+
Homepage = "https://asimov.sh"
|
|
37
|
+
Repository = "https://github.com/asimov-platform/asimov.py"
|
|
38
|
+
Changelog = "https://github.com/asimov-platform/asimov.py/blob/master/CHANGES.md"
|
|
39
|
+
Releases = "https://github.com/asimov-platform/asimov.py/releases"
|
|
40
|
+
Issues = "https://github.com/asimov-platform/asimov.py/issues"
|
|
41
|
+
Documentation = "https://github.com/asimov-platform/asimov.py/blob/master/README.md"
|
|
42
|
+
|
|
43
|
+
[dependency-groups]
|
|
44
|
+
dev = []
|
|
45
|
+
docs = []
|
|
46
|
+
lint = ["ruff"]
|
|
47
|
+
test = ["pytest", "pytest-mock"]
|
|
48
|
+
|
|
49
|
+
[tool.hatch.version]
|
|
50
|
+
source = "vcs"
|
|
51
|
+
fallback-version = "0.0.0"
|
|
52
|
+
|
|
53
|
+
[tool.hatch.build.hooks.vcs]
|
|
54
|
+
version-file = "src/asimov/_version.py"
|
|
55
|
+
|
|
56
|
+
[tool.hatch.build.targets.sdist]
|
|
57
|
+
only-include = [
|
|
58
|
+
"AUTHORS",
|
|
59
|
+
"CHANGES.md",
|
|
60
|
+
"Makefile",
|
|
61
|
+
"VERSION",
|
|
62
|
+
"src/asimov",
|
|
63
|
+
]
|
|
64
|
+
exclude = [".*"]
|
|
65
|
+
|
|
66
|
+
[tool.hatch.build.targets.wheel]
|
|
67
|
+
packages = ["src/asimov"]
|
|
68
|
+
|
|
69
|
+
[tool.hatch.envs.default]
|
|
70
|
+
installer = "uv"
|
|
71
|
+
|
|
72
|
+
[tool.mypy]
|
|
73
|
+
disallow_untyped_defs = true
|
|
74
|
+
|
|
75
|
+
[tool.uv]
|
|
76
|
+
default-groups = ["dev", "docs"]
|
|
77
|
+
|
|
78
|
+
[tool.pytest.ini_options]
|
|
79
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1,9 @@
|
|
|
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, 9), "ASIMOV.py requires Python 3.9+"
|
|
8
|
+
|
|
9
|
+
from ._version import __version__, __version_tuple__
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# file generated by setuptools-scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
|
|
4
|
+
__all__ = [
|
|
5
|
+
"__version__",
|
|
6
|
+
"__version_tuple__",
|
|
7
|
+
"version",
|
|
8
|
+
"version_tuple",
|
|
9
|
+
"__commit_id__",
|
|
10
|
+
"commit_id",
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
TYPE_CHECKING = False
|
|
14
|
+
if TYPE_CHECKING:
|
|
15
|
+
from typing import Tuple
|
|
16
|
+
from typing import Union
|
|
17
|
+
|
|
18
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
+
COMMIT_ID = Union[str, None]
|
|
20
|
+
else:
|
|
21
|
+
VERSION_TUPLE = object
|
|
22
|
+
COMMIT_ID = object
|
|
23
|
+
|
|
24
|
+
version: str
|
|
25
|
+
__version__: str
|
|
26
|
+
__version_tuple__: VERSION_TUPLE
|
|
27
|
+
version_tuple: VERSION_TUPLE
|
|
28
|
+
commit_id: COMMIT_ID
|
|
29
|
+
__commit_id__: COMMIT_ID
|
|
30
|
+
|
|
31
|
+
__version__ = version = '26.0.0.dev0'
|
|
32
|
+
__version_tuple__ = version_tuple = (26, 0, 0, 'dev0')
|
|
33
|
+
|
|
34
|
+
__commit_id__ = commit_id = None
|
|
File without changes
|
asimov_py-24.0.0.dev0/AUTHORS
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
* Arto Bendiken <arto@asimov.so>
|
asimov_py-24.0.0.dev0/PKG-INFO
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: asimov.py
|
|
3
|
-
Version: 24.0.0.dev0
|
|
4
|
-
Summary: Asimov Software Development Kit (SDK) for Python
|
|
5
|
-
Home-page: https://sdk.asimov.so
|
|
6
|
-
Author: Asimov AI
|
|
7
|
-
Author-email: support@asimov.so
|
|
8
|
-
License: Public Domain
|
|
9
|
-
Project-URL: Bug Tracker, https://github.com/AsimovPlatform/asimov.py/issues
|
|
10
|
-
Project-URL: Changelog, https://github.com/AsimovPlatform/asimov.py/blob/master/CHANGES.md
|
|
11
|
-
Project-URL: Documentation, https://github.com/AsimovPlatform/asimov.py/blob/master/README.md
|
|
12
|
-
Project-URL: Source Code, https://github.com/AsimovPlatform/asimov.py
|
|
13
|
-
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
|
-
Classifier: Environment :: Console
|
|
15
|
-
Classifier: Intended Audience :: Developers
|
|
16
|
-
Classifier: Intended Audience :: Information Technology
|
|
17
|
-
Classifier: License :: Public Domain
|
|
18
|
-
Classifier: Natural Language :: English
|
|
19
|
-
Classifier: Operating System :: OS Independent
|
|
20
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
22
|
-
Requires-Python: ~=3.9
|
|
23
|
-
Description-Content-Type: text/markdown
|
|
24
|
-
License-File: UNLICENSE
|
|
25
|
-
Requires-Dist: know.py>=0.0.2
|
|
26
|
-
Provides-Extra: test
|
|
27
|
-
Requires-Dist: pytest; extra == "test"
|
|
28
|
-
|
|
29
|
-
# Asimov Software Development Kit (SDK) for Python
|
|
30
|
-
|
|
31
|
-
[](https://unlicense.org)
|
|
32
|
-
[](https://pypi.org/project/asimov.py/)
|
|
33
|
-
[](https://pypi.org/project/asimov.py/)
|
|
34
|
-
|
|
35
|
-
🚧 _We are building in public. This is presently under heavy construction._
|
|
36
|
-
|
|
37
|
-
## 🛠️ Prerequisites
|
|
38
|
-
|
|
39
|
-
- [Python](https://python.org) 3.9+
|
|
40
|
-
(included in macOS 12.6+)
|
|
41
|
-
|
|
42
|
-
## ⬇️ Installation
|
|
43
|
-
|
|
44
|
-
### Installation via PyPI
|
|
45
|
-
|
|
46
|
-
```console
|
|
47
|
-
$ pip install asimov.py
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
## 👉 Examples
|
|
51
|
-
|
|
52
|
-
### Importing the SDK
|
|
53
|
-
|
|
54
|
-
```python
|
|
55
|
-
from asimov import sdk
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
### Initializing the SDK
|
|
59
|
-
|
|
60
|
-
```python
|
|
61
|
-
# TODO
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
### Examining SDK metadata
|
|
65
|
-
|
|
66
|
-
```python
|
|
67
|
-
# TODO
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
## 👨💻 Development
|
|
71
|
-
|
|
72
|
-
```console
|
|
73
|
-
$ git clone https://github.com/AsimovPlatform/asimov.py.git
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
- - -
|
|
77
|
-
|
|
78
|
-
[](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.py&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
79
|
-
[](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.py&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
80
|
-
[](https://news.ycombinator.com/submitlink?u=https://github.com/AsimovPlatform/asimov.py&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
81
|
-
[](https://www.facebook.com/sharer/sharer.php?u=https://github.com/AsimovPlatform/asimov.py)
|
|
82
|
-
[](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/AsimovPlatform/asimov.py)
|
asimov_py-24.0.0.dev0/README.md
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
# Asimov Software Development Kit (SDK) for Python
|
|
2
|
-
|
|
3
|
-
[](https://unlicense.org)
|
|
4
|
-
[](https://pypi.org/project/asimov.py/)
|
|
5
|
-
[](https://pypi.org/project/asimov.py/)
|
|
6
|
-
|
|
7
|
-
🚧 _We are building in public. This is presently under heavy construction._
|
|
8
|
-
|
|
9
|
-
## 🛠️ Prerequisites
|
|
10
|
-
|
|
11
|
-
- [Python](https://python.org) 3.9+
|
|
12
|
-
(included in macOS 12.6+)
|
|
13
|
-
|
|
14
|
-
## ⬇️ Installation
|
|
15
|
-
|
|
16
|
-
### Installation via PyPI
|
|
17
|
-
|
|
18
|
-
```console
|
|
19
|
-
$ pip install asimov.py
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
## 👉 Examples
|
|
23
|
-
|
|
24
|
-
### Importing the SDK
|
|
25
|
-
|
|
26
|
-
```python
|
|
27
|
-
from asimov import sdk
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
### Initializing the SDK
|
|
31
|
-
|
|
32
|
-
```python
|
|
33
|
-
# TODO
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
### Examining SDK metadata
|
|
37
|
-
|
|
38
|
-
```python
|
|
39
|
-
# TODO
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## 👨💻 Development
|
|
43
|
-
|
|
44
|
-
```console
|
|
45
|
-
$ git clone https://github.com/AsimovPlatform/asimov.py.git
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
- - -
|
|
49
|
-
|
|
50
|
-
[](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.py&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
51
|
-
[](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.py&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
52
|
-
[](https://news.ycombinator.com/submitlink?u=https://github.com/AsimovPlatform/asimov.py&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
53
|
-
[](https://www.facebook.com/sharer/sharer.php?u=https://github.com/AsimovPlatform/asimov.py)
|
|
54
|
-
[](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/AsimovPlatform/asimov.py)
|
asimov_py-24.0.0.dev0/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
24.0.0.dev0
|
asimov_py-24.0.0.dev0/setup.cfg
DELETED
asimov_py-24.0.0.dev0/setup.py
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
# This is free and unencumbered software released into the public domain.
|
|
2
|
-
|
|
3
|
-
"""Installation script for the 'asimov.py' package."""
|
|
4
|
-
|
|
5
|
-
# See: https://packaging.python.org/en/latest/discussions/setup-py-deprecated/
|
|
6
|
-
# See: https://packaging.python.org/en/latest/guides/modernize-setup-py-project/
|
|
7
|
-
|
|
8
|
-
from codecs import open
|
|
9
|
-
from os import path
|
|
10
|
-
from setuptools import find_packages, setup
|
|
11
|
-
|
|
12
|
-
def readfile(*filepath):
|
|
13
|
-
with open(path.join(*filepath), encoding='utf-8') as f:
|
|
14
|
-
return f.read()
|
|
15
|
-
|
|
16
|
-
PWD = path.abspath(path.dirname(__file__))
|
|
17
|
-
|
|
18
|
-
VERSION = readfile(PWD, 'VERSION').rstrip()
|
|
19
|
-
LONG_DESCRIPTION = readfile(PWD, 'README.md')
|
|
20
|
-
|
|
21
|
-
setup(
|
|
22
|
-
name='asimov.py',
|
|
23
|
-
version=VERSION,
|
|
24
|
-
description="Asimov Software Development Kit (SDK) for Python",
|
|
25
|
-
long_description=LONG_DESCRIPTION,
|
|
26
|
-
long_description_content_type='text/markdown',
|
|
27
|
-
url='https://sdk.asimov.so',
|
|
28
|
-
author='Asimov AI',
|
|
29
|
-
author_email='support@asimov.so',
|
|
30
|
-
license='Public Domain',
|
|
31
|
-
classifiers=[
|
|
32
|
-
'Development Status :: 2 - Pre-Alpha',
|
|
33
|
-
'Environment :: Console',
|
|
34
|
-
'Intended Audience :: Developers',
|
|
35
|
-
'Intended Audience :: Information Technology',
|
|
36
|
-
'License :: Public Domain',
|
|
37
|
-
'Natural Language :: English',
|
|
38
|
-
'Operating System :: OS Independent',
|
|
39
|
-
'Programming Language :: Python :: 3 :: Only',
|
|
40
|
-
'Topic :: Software Development :: Libraries',
|
|
41
|
-
],
|
|
42
|
-
keywords='',
|
|
43
|
-
project_urls={
|
|
44
|
-
'Bug Tracker': 'https://github.com/AsimovPlatform/asimov.py/issues',
|
|
45
|
-
'Changelog': 'https://github.com/AsimovPlatform/asimov.py/blob/master/CHANGES.md',
|
|
46
|
-
'Documentation': 'https://github.com/AsimovPlatform/asimov.py/blob/master/README.md',
|
|
47
|
-
'Source Code': 'https://github.com/AsimovPlatform/asimov.py',
|
|
48
|
-
},
|
|
49
|
-
packages=find_packages(where='src'),
|
|
50
|
-
package_dir={'': 'src'},
|
|
51
|
-
install_requires=[
|
|
52
|
-
'know.py>=0.0.2',
|
|
53
|
-
],
|
|
54
|
-
python_requires='~=3.9',
|
|
55
|
-
extras_require={'test': ['pytest']},
|
|
56
|
-
)
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# This is free and unencumbered software released into the public domain.
|
|
2
|
-
|
|
3
|
-
"""The Asimov Software Development Kit (SDK) for Python."""
|
|
4
|
-
|
|
5
|
-
import sys
|
|
6
|
-
|
|
7
|
-
assert sys.version_info >= (3, 9), "The Asimov SDK for Python requires Python 3.9+"
|
|
8
|
-
|
|
9
|
-
__all__ = [
|
|
10
|
-
'sdk',
|
|
11
|
-
]
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# This is free and unencumbered software released into the public domain.
|
|
2
|
-
|
|
3
|
-
"""The Asimov Software Development Kit (SDK) for Python."""
|
|
4
|
-
|
|
5
|
-
import sys
|
|
6
|
-
|
|
7
|
-
assert sys.version_info >= (3, 9), "The Asimov SDK for Python requires Python 3.9+"
|
|
8
|
-
|
|
9
|
-
from .lib import *
|
|
10
|
-
from .util import *
|
|
11
|
-
|
|
12
|
-
__all__ = [
|
|
13
|
-
'lib',
|
|
14
|
-
'util',
|
|
15
|
-
]
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: asimov.py
|
|
3
|
-
Version: 24.0.0.dev0
|
|
4
|
-
Summary: Asimov Software Development Kit (SDK) for Python
|
|
5
|
-
Home-page: https://sdk.asimov.so
|
|
6
|
-
Author: Asimov AI
|
|
7
|
-
Author-email: support@asimov.so
|
|
8
|
-
License: Public Domain
|
|
9
|
-
Project-URL: Bug Tracker, https://github.com/AsimovPlatform/asimov.py/issues
|
|
10
|
-
Project-URL: Changelog, https://github.com/AsimovPlatform/asimov.py/blob/master/CHANGES.md
|
|
11
|
-
Project-URL: Documentation, https://github.com/AsimovPlatform/asimov.py/blob/master/README.md
|
|
12
|
-
Project-URL: Source Code, https://github.com/AsimovPlatform/asimov.py
|
|
13
|
-
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
|
-
Classifier: Environment :: Console
|
|
15
|
-
Classifier: Intended Audience :: Developers
|
|
16
|
-
Classifier: Intended Audience :: Information Technology
|
|
17
|
-
Classifier: License :: Public Domain
|
|
18
|
-
Classifier: Natural Language :: English
|
|
19
|
-
Classifier: Operating System :: OS Independent
|
|
20
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
22
|
-
Requires-Python: ~=3.9
|
|
23
|
-
Description-Content-Type: text/markdown
|
|
24
|
-
License-File: UNLICENSE
|
|
25
|
-
Requires-Dist: know.py>=0.0.2
|
|
26
|
-
Provides-Extra: test
|
|
27
|
-
Requires-Dist: pytest; extra == "test"
|
|
28
|
-
|
|
29
|
-
# Asimov Software Development Kit (SDK) for Python
|
|
30
|
-
|
|
31
|
-
[](https://unlicense.org)
|
|
32
|
-
[](https://pypi.org/project/asimov.py/)
|
|
33
|
-
[](https://pypi.org/project/asimov.py/)
|
|
34
|
-
|
|
35
|
-
🚧 _We are building in public. This is presently under heavy construction._
|
|
36
|
-
|
|
37
|
-
## 🛠️ Prerequisites
|
|
38
|
-
|
|
39
|
-
- [Python](https://python.org) 3.9+
|
|
40
|
-
(included in macOS 12.6+)
|
|
41
|
-
|
|
42
|
-
## ⬇️ Installation
|
|
43
|
-
|
|
44
|
-
### Installation via PyPI
|
|
45
|
-
|
|
46
|
-
```console
|
|
47
|
-
$ pip install asimov.py
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
## 👉 Examples
|
|
51
|
-
|
|
52
|
-
### Importing the SDK
|
|
53
|
-
|
|
54
|
-
```python
|
|
55
|
-
from asimov import sdk
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
### Initializing the SDK
|
|
59
|
-
|
|
60
|
-
```python
|
|
61
|
-
# TODO
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
### Examining SDK metadata
|
|
65
|
-
|
|
66
|
-
```python
|
|
67
|
-
# TODO
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
## 👨💻 Development
|
|
71
|
-
|
|
72
|
-
```console
|
|
73
|
-
$ git clone https://github.com/AsimovPlatform/asimov.py.git
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
- - -
|
|
77
|
-
|
|
78
|
-
[](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.py&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
79
|
-
[](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.py&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
80
|
-
[](https://news.ycombinator.com/submitlink?u=https://github.com/AsimovPlatform/asimov.py&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
81
|
-
[](https://www.facebook.com/sharer/sharer.php?u=https://github.com/AsimovPlatform/asimov.py)
|
|
82
|
-
[](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/AsimovPlatform/asimov.py)
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
AUTHORS
|
|
2
|
-
CHANGES.md
|
|
3
|
-
MANIFEST.in
|
|
4
|
-
README.md
|
|
5
|
-
UNLICENSE
|
|
6
|
-
VERSION
|
|
7
|
-
pyproject.toml
|
|
8
|
-
setup.cfg
|
|
9
|
-
setup.py
|
|
10
|
-
src/asimov/__init__.py
|
|
11
|
-
src/asimov.py.egg-info/PKG-INFO
|
|
12
|
-
src/asimov.py.egg-info/SOURCES.txt
|
|
13
|
-
src/asimov.py.egg-info/dependency_links.txt
|
|
14
|
-
src/asimov.py.egg-info/requires.txt
|
|
15
|
-
src/asimov.py.egg-info/top_level.txt
|
|
16
|
-
src/asimov/sdk/__init__.py
|
|
17
|
-
src/asimov/sdk/lib.py
|
|
18
|
-
src/asimov/sdk/util.py
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
asimov
|
|
File without changes
|