asimov.py 24.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.
@@ -0,0 +1 @@
1
+ * Arto Bendiken <arto@asimov.so>
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## 24.0.0.dev0 - 2024-06-26
@@ -0,0 +1,5 @@
1
+ include AUTHORS
2
+ include CHANGES.md
3
+ include README.md
4
+ include UNLICENSE
5
+ include VERSION
@@ -0,0 +1,82 @@
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
+ [![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
32
+ [![Compatibility](https://img.shields.io/badge/python-3.9%2B-blue)](https://pypi.org/project/asimov.py/)
33
+ [![Package](https://img.shields.io/pypi/v/asimov.py)](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
+ [![Share on Twitter](https://img.shields.io/badge/share%20on-twitter-03A9F4?logo=twitter)](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.py&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
79
+ [![Share on Reddit](https://img.shields.io/badge/share%20on-reddit-red?logo=reddit)](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.py&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
80
+ [![Share on Hacker News](https://img.shields.io/badge/share%20on-hacker%20news-orange?logo=ycombinator)](https://news.ycombinator.com/submitlink?u=https://github.com/AsimovPlatform/asimov.py&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
81
+ [![Share on Facebook](https://img.shields.io/badge/share%20on-facebook-1976D2?logo=facebook)](https://www.facebook.com/sharer/sharer.php?u=https://github.com/AsimovPlatform/asimov.py)
82
+ [![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/AsimovPlatform/asimov.py)
@@ -0,0 +1,54 @@
1
+ # Asimov Software Development Kit (SDK) for Python
2
+
3
+ [![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
4
+ [![Compatibility](https://img.shields.io/badge/python-3.9%2B-blue)](https://pypi.org/project/asimov.py/)
5
+ [![Package](https://img.shields.io/pypi/v/asimov.py)](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
+ [![Share on Twitter](https://img.shields.io/badge/share%20on-twitter-03A9F4?logo=twitter)](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.py&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
51
+ [![Share on Reddit](https://img.shields.io/badge/share%20on-reddit-red?logo=reddit)](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.py&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
52
+ [![Share on Hacker News](https://img.shields.io/badge/share%20on-hacker%20news-orange?logo=ycombinator)](https://news.ycombinator.com/submitlink?u=https://github.com/AsimovPlatform/asimov.py&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
53
+ [![Share on Facebook](https://img.shields.io/badge/share%20on-facebook-1976D2?logo=facebook)](https://www.facebook.com/sharer/sharer.php?u=https://github.com/AsimovPlatform/asimov.py)
54
+ [![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/AsimovPlatform/asimov.py)
@@ -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/>
@@ -0,0 +1 @@
1
+ 24.0.0.dev0
@@ -0,0 +1,6 @@
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 = ["setuptools >= 61.0"]
6
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,9 @@
1
+ [metadata]
2
+ license_file = UNLICENSE
3
+
4
+ [bdist_wheel]
5
+
6
+ [egg_info]
7
+ tag_build =
8
+ tag_date = 0
9
+
@@ -0,0 +1,56 @@
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
+ )
@@ -0,0 +1,11 @@
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
+ ]
@@ -0,0 +1,15 @@
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
+ ]
@@ -0,0 +1,3 @@
1
+ # This is free and unencumbered software released into the public domain.
2
+
3
+ """The Asimov Software Development Kit (SDK) for Python."""
@@ -0,0 +1,3 @@
1
+ # This is free and unencumbered software released into the public domain.
2
+
3
+ """The Asimov Software Development Kit (SDK) for Python."""
@@ -0,0 +1,82 @@
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
+ [![License](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
32
+ [![Compatibility](https://img.shields.io/badge/python-3.9%2B-blue)](https://pypi.org/project/asimov.py/)
33
+ [![Package](https://img.shields.io/pypi/v/asimov.py)](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
+ [![Share on Twitter](https://img.shields.io/badge/share%20on-twitter-03A9F4?logo=twitter)](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.py&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
79
+ [![Share on Reddit](https://img.shields.io/badge/share%20on-reddit-red?logo=reddit)](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.py&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
80
+ [![Share on Hacker News](https://img.shields.io/badge/share%20on-hacker%20news-orange?logo=ycombinator)](https://news.ycombinator.com/submitlink?u=https://github.com/AsimovPlatform/asimov.py&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
81
+ [![Share on Facebook](https://img.shields.io/badge/share%20on-facebook-1976D2?logo=facebook)](https://www.facebook.com/sharer/sharer.php?u=https://github.com/AsimovPlatform/asimov.py)
82
+ [![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/AsimovPlatform/asimov.py)
@@ -0,0 +1,18 @@
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
@@ -0,0 +1,4 @@
1
+ know.py>=0.0.2
2
+
3
+ [test]
4
+ pytest