moat-src 0.8.2__py3-none-any.whl → 0.8.4__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.
- build/lib/moat/src/__init__.py +0 -0
- build/lib/moat/src/_main.py +1113 -0
- build/lib/moat/src/_templates/moat/__init__.py +3 -0
- build/lib/moat/src/_templates/pyproject.default.yaml +146 -0
- build/lib/moat/src/_templates/pyproject.forced.yaml +77 -0
- build/lib/moat/src/inspect.py +65 -0
- build/lib/moat/src/test.py +89 -0
- debian/moat-src/usr/lib/python3/dist-packages/moat/src/__init__.py +0 -0
- debian/moat-src/usr/lib/python3/dist-packages/moat/src/_main.py +1113 -0
- debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/moat/__init__.py +3 -0
- debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.default.yaml +146 -0
- debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.forced.yaml +77 -0
- debian/moat-src/usr/lib/python3/dist-packages/moat/src/inspect.py +65 -0
- debian/moat-src/usr/lib/python3/dist-packages/moat/src/test.py +89 -0
- moat/src/_main.py +138 -160
- moat/src/_templates/moat/__init__.py +3 -0
- moat/src/_templates/pyproject.default.yaml +146 -0
- moat/src/_templates/pyproject.forced.yaml +77 -0
- {moat_src-0.8.2.dist-info → moat_src-0.8.4.dist-info}/METADATA +1 -1
- moat_src-0.8.4.dist-info/RECORD +26 -0
- moat_src-0.8.4.dist-info/top_level.txt +4 -0
- moat_src-0.8.2.dist-info/RECORD +0 -9
- moat_src-0.8.2.dist-info/top_level.txt +0 -1
- {moat_src-0.8.2.dist-info → moat_src-0.8.4.dist-info}/WHEEL +0 -0
- {moat_src-0.8.2.dist-info → moat_src-0.8.4.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,77 @@
|
|
1
|
+
build-system:
|
2
|
+
build-backend: setuptools.build_meta
|
3
|
+
requires:
|
4
|
+
- setuptools
|
5
|
+
- wheel
|
6
|
+
- setuptools-scm
|
7
|
+
project:
|
8
|
+
classifiers:
|
9
|
+
- 'Intended Audience :: Developers'
|
10
|
+
- 'Programming Language :: Python :: 3'
|
11
|
+
- 'Framework :: AsyncIO'
|
12
|
+
- 'Framework :: Trio'
|
13
|
+
- 'Framework :: AnyIO'
|
14
|
+
- 'Intended Audience :: Developers'
|
15
|
+
- 'License :: OSI Approved'
|
16
|
+
- 'Development Status :: 4 - Beta'
|
17
|
+
dependencies:
|
18
|
+
- anyio ~= 3.0
|
19
|
+
dynamic:
|
20
|
+
- version
|
21
|
+
keywords:
|
22
|
+
- MoaT
|
23
|
+
license:
|
24
|
+
file: LICENSE.txt
|
25
|
+
requires-python: '>=3.8'
|
26
|
+
urls:
|
27
|
+
homepage: https://m-o-a-t.org
|
28
|
+
name: SUBNAME
|
29
|
+
tool:
|
30
|
+
moat:
|
31
|
+
fixup: |
|
32
|
+
try:
|
33
|
+
toml["tool"]["tox"]["tox"]["envlist"].remove("py39")
|
34
|
+
except(KeyError,ValueError):
|
35
|
+
pass
|
36
|
+
flake8:
|
37
|
+
max-line-length: 99
|
38
|
+
ignore:
|
39
|
+
- W503
|
40
|
+
- E231
|
41
|
+
- E203
|
42
|
+
|
43
|
+
isort:
|
44
|
+
line_length: 99
|
45
|
+
multi_line_output: 3
|
46
|
+
trailing_comma: DELETE
|
47
|
+
profile: black
|
48
|
+
setuptools_scm: {}
|
49
|
+
|
50
|
+
tox:
|
51
|
+
tox:
|
52
|
+
isolated_build: True
|
53
|
+
envlist:
|
54
|
+
- check
|
55
|
+
- py310
|
56
|
+
|
57
|
+
testenv:
|
58
|
+
setenv:
|
59
|
+
- "PYTHONPATH = {env:PYTHONPATH}{:}{toxinidir}"
|
60
|
+
deps:
|
61
|
+
- pytest
|
62
|
+
- trio
|
63
|
+
commands:
|
64
|
+
- python3 -mpytest tests/
|
65
|
+
|
66
|
+
"testenv:check":
|
67
|
+
commands:
|
68
|
+
- black --check moat tests
|
69
|
+
- flake8p moat tests
|
70
|
+
- pylint moat tests
|
71
|
+
deps:
|
72
|
+
- flake8
|
73
|
+
- flake8-pyproject
|
74
|
+
- black
|
75
|
+
- pylint
|
76
|
+
- pytest
|
77
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
build/lib/moat/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
build/lib/moat/src/_main.py,sha256=vSPa8PC0c58_Bl_8VIugzBVea2djs5PyAdvyyH8NMDs,34072
|
3
|
+
build/lib/moat/src/inspect.py,sha256=rUU-FQyQoQP8LJCebbtdL6lgzz9KPH7KGSq11kD4nmU,1489
|
4
|
+
build/lib/moat/src/test.py,sha256=Xn7tIyKt9V0CL_Vt0vauKsZUeNmZTftiHUpnGgk4wyA,2191
|
5
|
+
build/lib/moat/src/_templates/pyproject.default.yaml,sha256=nHUa7dQhe8QpDH9Gbmjflf3BI3ECk2cuXArf0oPCgeg,2801
|
6
|
+
build/lib/moat/src/_templates/pyproject.forced.yaml,sha256=djfcy3hgfoIgrn2pRrxDWTyN3EEsA1y5NhkzYrGjgNY,1427
|
7
|
+
build/lib/moat/src/_templates/moat/__init__.py,sha256=ZBoFcXbv35djD599Vo_PKTqDjvQXYYXTcPUs5RcQZrs,101
|
8
|
+
debian/moat-src/usr/lib/python3/dist-packages/moat/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
debian/moat-src/usr/lib/python3/dist-packages/moat/src/_main.py,sha256=vSPa8PC0c58_Bl_8VIugzBVea2djs5PyAdvyyH8NMDs,34072
|
10
|
+
debian/moat-src/usr/lib/python3/dist-packages/moat/src/inspect.py,sha256=rUU-FQyQoQP8LJCebbtdL6lgzz9KPH7KGSq11kD4nmU,1489
|
11
|
+
debian/moat-src/usr/lib/python3/dist-packages/moat/src/test.py,sha256=Xn7tIyKt9V0CL_Vt0vauKsZUeNmZTftiHUpnGgk4wyA,2191
|
12
|
+
debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.default.yaml,sha256=nHUa7dQhe8QpDH9Gbmjflf3BI3ECk2cuXArf0oPCgeg,2801
|
13
|
+
debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/pyproject.forced.yaml,sha256=djfcy3hgfoIgrn2pRrxDWTyN3EEsA1y5NhkzYrGjgNY,1427
|
14
|
+
debian/moat-src/usr/lib/python3/dist-packages/moat/src/_templates/moat/__init__.py,sha256=ZBoFcXbv35djD599Vo_PKTqDjvQXYYXTcPUs5RcQZrs,101
|
15
|
+
moat/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
+
moat/src/_main.py,sha256=vSPa8PC0c58_Bl_8VIugzBVea2djs5PyAdvyyH8NMDs,34072
|
17
|
+
moat/src/inspect.py,sha256=rUU-FQyQoQP8LJCebbtdL6lgzz9KPH7KGSq11kD4nmU,1489
|
18
|
+
moat/src/test.py,sha256=Xn7tIyKt9V0CL_Vt0vauKsZUeNmZTftiHUpnGgk4wyA,2191
|
19
|
+
moat/src/_templates/pyproject.default.yaml,sha256=nHUa7dQhe8QpDH9Gbmjflf3BI3ECk2cuXArf0oPCgeg,2801
|
20
|
+
moat/src/_templates/pyproject.forced.yaml,sha256=djfcy3hgfoIgrn2pRrxDWTyN3EEsA1y5NhkzYrGjgNY,1427
|
21
|
+
moat/src/_templates/moat/__init__.py,sha256=ZBoFcXbv35djD599Vo_PKTqDjvQXYYXTcPUs5RcQZrs,101
|
22
|
+
moat_src-0.8.4.dist-info/licenses/LICENSE.txt,sha256=L5vKJLVOg5t0CEEPpW9-O_0vzbP0PEjEF06tLvnIDuk,541
|
23
|
+
moat_src-0.8.4.dist-info/METADATA,sha256=zTQPHbP8HFE9X7EloEayGx61LDzrvV6pagxMmD7EQfk,733
|
24
|
+
moat_src-0.8.4.dist-info/WHEEL,sha256=xcaH6rP_nCxh1LBIPM7Q0uOnzSGjsIye-Q44j_zbzw8,104
|
25
|
+
moat_src-0.8.4.dist-info/top_level.txt,sha256=esIWSUltc-K0iuPfb_0bHTgPJqIq9n_LFfqpy_wJCrc,23
|
26
|
+
moat_src-0.8.4.dist-info/RECORD,,
|
moat_src-0.8.2.dist-info/RECORD
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
moat/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
moat/src/_main.py,sha256=w2LWYzxMK0vzu9ZrykASuHdb3RJiScZQ8WcLRKIibyk,35047
|
3
|
-
moat/src/inspect.py,sha256=rUU-FQyQoQP8LJCebbtdL6lgzz9KPH7KGSq11kD4nmU,1489
|
4
|
-
moat/src/test.py,sha256=Xn7tIyKt9V0CL_Vt0vauKsZUeNmZTftiHUpnGgk4wyA,2191
|
5
|
-
moat_src-0.8.2.dist-info/licenses/LICENSE.txt,sha256=L5vKJLVOg5t0CEEPpW9-O_0vzbP0PEjEF06tLvnIDuk,541
|
6
|
-
moat_src-0.8.2.dist-info/METADATA,sha256=DkORkR7ZTGMgSjjLjBLGUPG-wTSqZRVcorLUtUxzICE,733
|
7
|
-
moat_src-0.8.2.dist-info/WHEEL,sha256=xcaH6rP_nCxh1LBIPM7Q0uOnzSGjsIye-Q44j_zbzw8,104
|
8
|
-
moat_src-0.8.2.dist-info/top_level.txt,sha256=pcs9fl5w5AB5GVi4SvBqIVmFrkRwQkVw_dEvW0Q0cSA,5
|
9
|
-
moat_src-0.8.2.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
moat
|
File without changes
|
File without changes
|