moat-src 0.8.5__py3-none-any.whl → 0.8.10__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.
Files changed (31) hide show
  1. moat/src/_cfg.yaml +2 -0
  2. moat/src/_main.py +286 -196
  3. moat/src/_templates/moat/_main.py +23 -0
  4. moat/src/test.py +1 -1
  5. {moat_src-0.8.5.dist-info → moat_src-0.8.10.dist-info}/METADATA +2 -2
  6. moat_src-0.8.10.dist-info/RECORD +14 -0
  7. {moat_src-0.8.5.dist-info → moat_src-0.8.10.dist-info}/WHEEL +1 -1
  8. moat_src-0.8.10.dist-info/top_level.txt +1 -0
  9. build/lib/moat/src/__init__.py +0 -0
  10. build/lib/moat/src/_main.py +0 -1113
  11. build/lib/moat/src/_templates/moat/__init__.py +0 -3
  12. build/lib/moat/src/inspect.py +0 -65
  13. build/lib/moat/src/test.py +0 -89
  14. debian/.gitignore +0 -8
  15. debian/changelog +0 -78
  16. debian/control +0 -20
  17. debian/moat-src/usr/lib/python3/dist-packages/moat/src/__init__.py +0 -0
  18. debian/moat-src/usr/lib/python3/dist-packages/moat/src/_main.py +0 -1113
  19. debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/moat/__init__.py +0 -3
  20. debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.default.yaml +0 -146
  21. debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.forced.yaml +0 -77
  22. debian/moat-src/usr/lib/python3/dist-packages/moat/src/inspect.py +0 -65
  23. debian/moat-src/usr/lib/python3/dist-packages/moat/src/test.py +0 -89
  24. debian/rules +0 -10
  25. moat/src/_templates/pyproject.default.yaml +0 -146
  26. moat/src/_templates/pyproject.forced.yaml +0 -77
  27. moat_src-0.8.5.dist-info/RECORD +0 -30
  28. moat_src-0.8.5.dist-info/top_level.txt +0 -4
  29. {build/lib/moat/src/_templates → moat/src/_templates/packaging}/pyproject.default.yaml +0 -0
  30. {build/lib/moat/src/_templates → moat/src/_templates/packaging}/pyproject.forced.yaml +0 -0
  31. {moat_src-0.8.5.dist-info → moat_src-0.8.10.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,23 @@
1
+ """
2
+ MoaT sub-tool template
3
+ """
4
+
5
+ from __future__ import annotations
6
+
7
+ import asyncclick as click
8
+
9
+ from moat.util import load_subgroup
10
+
11
+
12
+ @load_subgroup(prefix="moat.new.component")
13
+ async def cli():
14
+ """Something new."""
15
+ pass
16
+
17
+
18
+ @cli.command(name="test")
19
+ async def test_():
20
+ """
21
+ Testing things.
22
+ """
23
+ pass
moat/src/test.py CHANGED
@@ -49,7 +49,7 @@ async def run(*args, expect_exit=0, do_stdout=True):
49
49
  except Exception as exc:
50
50
  while isinstance(exc, ExceptionGroup) and len(exc.exceptions) == 1:
51
51
  exc = exc.exceptions[0]
52
- raise exc
52
+ raise
53
53
  except BaseException as exc:
54
54
  res = exc
55
55
  raise
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moat-src
3
- Version: 0.8.5
3
+ Version: 0.8.10
4
4
  Summary: Tools for managing the MoaT sources
5
5
  Author-email: Matthias Urlichs <matthias@urlichs.de>
6
6
  Project-URL: homepage, https://m-o-a-t.org
@@ -15,7 +15,7 @@ Classifier: Development Status :: 4 - Beta
15
15
  Requires-Python: >=3.8
16
16
  Description-Content-Type: text/x-rst
17
17
  License-File: LICENSE.txt
18
- Requires-Dist: anyio~=3.0
18
+ Requires-Dist: anyio~=4.2
19
19
  Requires-Dist: tomlkit~=0.12
20
20
  Requires-Dist: asyncclick
21
21
  Requires-Dist: gitpython
@@ -0,0 +1,14 @@
1
+ moat/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ moat/src/_cfg.yaml,sha256=FLoCF_uvic-_i6dVjGyCorT9Rfqi3SXqWlgNyVtrT3w,25
3
+ moat/src/_main.py,sha256=kVX-bd6mh8tGsRtj8f0AmGtAwvUXi_rsIKJh9cfjMrc,35915
4
+ moat/src/inspect.py,sha256=rUU-FQyQoQP8LJCebbtdL6lgzz9KPH7KGSq11kD4nmU,1489
5
+ moat/src/test.py,sha256=rA-YV_VDwtfBk-bzIEa31fk9GHl6V8f4HTXejLoAAbk,2187
6
+ moat/src/_templates/moat/__init__.py,sha256=ZBoFcXbv35djD599Vo_PKTqDjvQXYYXTcPUs5RcQZrs,101
7
+ moat/src/_templates/moat/_main.py,sha256=8gLupAmWb5T6wLkQYTi99V1nyaS8cAIccwxHet2ydFw,321
8
+ moat/src/_templates/packaging/pyproject.default.yaml,sha256=nHUa7dQhe8QpDH9Gbmjflf3BI3ECk2cuXArf0oPCgeg,2801
9
+ moat/src/_templates/packaging/pyproject.forced.yaml,sha256=djfcy3hgfoIgrn2pRrxDWTyN3EEsA1y5NhkzYrGjgNY,1427
10
+ moat_src-0.8.10.dist-info/licenses/LICENSE.txt,sha256=L5vKJLVOg5t0CEEPpW9-O_0vzbP0PEjEF06tLvnIDuk,541
11
+ moat_src-0.8.10.dist-info/METADATA,sha256=bUFCo4n4JgTZeXgtfrqGkCGooNY7Owj2GY5dDri_u7U,734
12
+ moat_src-0.8.10.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
13
+ moat_src-0.8.10.dist-info/top_level.txt,sha256=pcs9fl5w5AB5GVi4SvBqIVmFrkRwQkVw_dEvW0Q0cSA,5
14
+ moat_src-0.8.10.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (77.0.3.post20250321)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1 @@
1
+ moat
File without changes