magmascript 3.2.2__tar.gz → 3.2.3__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.
- {magmascript-3.2.2 → magmascript-3.2.3}/PKG-INFO +8 -1
- {magmascript-3.2.2 → magmascript-3.2.3}/README.md +6 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript.egg-info/PKG-INFO +8 -1
- {magmascript-3.2.2 → magmascript-3.2.3}/pyproject.toml +2 -1
- {magmascript-3.2.2 → magmascript-3.2.3}/LICENSE +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/cli.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/codegen/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/codegen/c.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/cache.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/command_registry.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/commands.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/config.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/exceptions.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/github.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/output.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/registry.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/rpc.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/core/runner.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/archive/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/archive/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/gh/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/gh/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/gh/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/lastfm/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/lastfm/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mac/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mac/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mac/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mb/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mb/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mc1/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mc1/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mc1/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mcp/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mcp/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/mcp/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/providers/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/providers/archive.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/providers/met_museum.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/providers/openverse.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/providers/pexels.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/providers/pixabay.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/providers/smithsonian.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/media/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/pi/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/pi/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/pi/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/rights/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/rights/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/rights/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/scores/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/scores/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/scores/tools.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/search/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/domains/search/client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/ast_nodes.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/astheno/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/astheno/arena.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/astheno/dump.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/astheno/floorplan.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/astheno/numeric.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/builtins.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/domain_bridge.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/environment.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/hypnagogia.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/interpreter.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/lexer.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/parser.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/pretty.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/pygments_mgs.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/tokens.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/util.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/lang/visitor.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/repl.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript/scaffold/__init__.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript.egg-info/SOURCES.txt +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript.egg-info/dependency_links.txt +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript.egg-info/entry_points.txt +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript.egg-info/requires.txt +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/magmascript.egg-info/top_level.txt +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/setup.cfg +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_astheno.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_cache.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_classes.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_cli.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_commands.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_domain_bridge.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_import.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_lang.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_mac.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_mc1.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_mcp_client.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_rpc.py +0 -0
- {magmascript-3.2.2 → magmascript-3.2.3}/tests/test_try_catch.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: magmascript
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.3
|
|
4
4
|
Summary: Scripting toolkit with domain-first subcommands
|
|
5
5
|
Author: Jake McCoy
|
|
6
6
|
License-Expression: MIT
|
|
@@ -8,6 +8,7 @@ Project-URL: Homepage, https://magmacrunch.com/ware/magmascript/
|
|
|
8
8
|
Project-URL: Documentation, https://github.com/magmacrunch-media/magmascript/wiki
|
|
9
9
|
Project-URL: Repository, https://github.com/magmacrunch-media/magmascript
|
|
10
10
|
Project-URL: Changelog, https://github.com/magmacrunch-media/magmascript/blob/main/CHANGELOG.md
|
|
11
|
+
Project-URL: Funding, https://github.com/sponsors/magmacrunch-media
|
|
11
12
|
Keywords: mcp,scripting,cli,magmacrunch
|
|
12
13
|
Classifier: Development Status :: 3 - Alpha
|
|
13
14
|
Classifier: Environment :: Console
|
|
@@ -696,6 +697,12 @@ Full documentation on the [Wiki](https://github.com/magmacrunch-media/magmascrip
|
|
|
696
697
|
- [Asthenosphere](https://github.com/magmacrunch-media/magmascript/wiki/Asthenosphere)
|
|
697
698
|
- [Architecture](https://github.com/magmacrunch-media/magmascript/wiki/Architecture)
|
|
698
699
|
|
|
700
|
+
## Support This Project
|
|
701
|
+
|
|
702
|
+
If you find magmascript useful, consider supporting its development:
|
|
703
|
+
|
|
704
|
+
[](https://github.com/sponsors/magmacrunch-media)
|
|
705
|
+
|
|
699
706
|
## License
|
|
700
707
|
|
|
701
708
|
MIT
|
|
@@ -659,6 +659,12 @@ Full documentation on the [Wiki](https://github.com/magmacrunch-media/magmascrip
|
|
|
659
659
|
- [Asthenosphere](https://github.com/magmacrunch-media/magmascript/wiki/Asthenosphere)
|
|
660
660
|
- [Architecture](https://github.com/magmacrunch-media/magmascript/wiki/Architecture)
|
|
661
661
|
|
|
662
|
+
## Support This Project
|
|
663
|
+
|
|
664
|
+
If you find magmascript useful, consider supporting its development:
|
|
665
|
+
|
|
666
|
+
[](https://github.com/sponsors/magmacrunch-media)
|
|
667
|
+
|
|
662
668
|
## License
|
|
663
669
|
|
|
664
670
|
MIT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: magmascript
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.3
|
|
4
4
|
Summary: Scripting toolkit with domain-first subcommands
|
|
5
5
|
Author: Jake McCoy
|
|
6
6
|
License-Expression: MIT
|
|
@@ -8,6 +8,7 @@ Project-URL: Homepage, https://magmacrunch.com/ware/magmascript/
|
|
|
8
8
|
Project-URL: Documentation, https://github.com/magmacrunch-media/magmascript/wiki
|
|
9
9
|
Project-URL: Repository, https://github.com/magmacrunch-media/magmascript
|
|
10
10
|
Project-URL: Changelog, https://github.com/magmacrunch-media/magmascript/blob/main/CHANGELOG.md
|
|
11
|
+
Project-URL: Funding, https://github.com/sponsors/magmacrunch-media
|
|
11
12
|
Keywords: mcp,scripting,cli,magmacrunch
|
|
12
13
|
Classifier: Development Status :: 3 - Alpha
|
|
13
14
|
Classifier: Environment :: Console
|
|
@@ -696,6 +697,12 @@ Full documentation on the [Wiki](https://github.com/magmacrunch-media/magmascrip
|
|
|
696
697
|
- [Asthenosphere](https://github.com/magmacrunch-media/magmascript/wiki/Asthenosphere)
|
|
697
698
|
- [Architecture](https://github.com/magmacrunch-media/magmascript/wiki/Architecture)
|
|
698
699
|
|
|
700
|
+
## Support This Project
|
|
701
|
+
|
|
702
|
+
If you find magmascript useful, consider supporting its development:
|
|
703
|
+
|
|
704
|
+
[](https://github.com/sponsors/magmacrunch-media)
|
|
705
|
+
|
|
699
706
|
## License
|
|
700
707
|
|
|
701
708
|
MIT
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "magmascript"
|
|
7
|
-
version = "3.2.
|
|
7
|
+
version = "3.2.3"
|
|
8
8
|
description = "Scripting toolkit with domain-first subcommands"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -52,6 +52,7 @@ Homepage = "https://magmacrunch.com/ware/magmascript/"
|
|
|
52
52
|
Documentation = "https://github.com/magmacrunch-media/magmascript/wiki"
|
|
53
53
|
Repository = "https://github.com/magmacrunch-media/magmascript"
|
|
54
54
|
Changelog = "https://github.com/magmacrunch-media/magmascript/blob/main/CHANGELOG.md"
|
|
55
|
+
Funding = "https://github.com/sponsors/magmacrunch-media"
|
|
55
56
|
|
|
56
57
|
[tool.setuptools.packages.find]
|
|
57
58
|
include = ["magmascript*"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|