moat-src 0.6.1__tar.gz → 0.8.2__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.
- moat_src-0.8.2/LICENSE.txt +14 -0
- {moat_src-0.6.1/moat_src.egg-info → moat_src-0.8.2}/PKG-INFO +5 -4
- moat_src-0.8.2/moat/src/_main.py +1135 -0
- {moat_src-0.6.1 → moat_src-0.8.2}/moat/src/inspect.py +3 -0
- {moat_src-0.6.1 → moat_src-0.8.2}/moat/src/test.py +10 -7
- {moat_src-0.6.1 → moat_src-0.8.2/moat_src.egg-info}/PKG-INFO +5 -4
- moat_src-0.8.2/moat_src.egg-info/SOURCES.txt +11 -0
- {moat_src-0.6.1 → moat_src-0.8.2}/pyproject.toml +4 -10
- moat_src-0.6.1/.gitignore +0 -45
- moat_src-0.6.1/Makefile +0 -15
- moat_src-0.6.1/moat/__init__.py +0 -5
- moat_src-0.6.1/moat/src/_hooks/pre-commit +0 -12
- moat_src-0.6.1/moat/src/_main.py +0 -834
- moat_src-0.6.1/moat/src/_templates/LICENSE.txt +0 -12
- moat_src-0.6.1/moat/src/_templates/Makefile +0 -15
- moat_src-0.6.1/moat/src/_templates/gitignore +0 -45
- moat_src-0.6.1/moat/src/_templates/make/py +0 -108
- moat_src-0.6.1/moat/src/_templates/moat/__init__.py +0 -5
- moat_src-0.6.1/moat/src/_templates/pyproject.default.yaml +0 -146
- moat_src-0.6.1/moat/src/_templates/pyproject.forced.yaml +0 -77
- moat_src-0.6.1/moat/src/_templates/test_basic_py +0 -11
- moat_src-0.6.1/moat_src.egg-info/SOURCES.txt +0 -24
- moat_src-0.6.1/tests/__init__.py +0 -0
- moat_src-0.6.1/tests/test_basic.py +0 -17
- {moat_src-0.6.1 → moat_src-0.8.2}/moat/src/__init__.py +0 -0
- {moat_src-0.6.1 → moat_src-0.8.2}/moat_src.egg-info/dependency_links.txt +0 -0
- {moat_src-0.6.1 → moat_src-0.8.2}/moat_src.egg-info/requires.txt +0 -0
- {moat_src-0.6.1 → moat_src-0.8.2}/moat_src.egg-info/top_level.txt +0 -0
- {moat_src-0.6.1 → moat_src-0.8.2}/setup.cfg +0 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
The code in this repository, and all MoaT submodules it refers to,
|
2
|
+
is part of the MoaT project.
|
3
|
+
|
4
|
+
Unless a submodule's LICENSE.txt states otherwise, all included files are
|
5
|
+
licensed under the LGPL V3, as published by the FSF at
|
6
|
+
https://www.gnu.org/licenses/lgpl-3.0.html .
|
7
|
+
|
8
|
+
In addition to the LGPL's terms, the author(s) respectfully ask all users of
|
9
|
+
this code to contribute any bug fixes or enhancements. Also, please link back to
|
10
|
+
https://M-o-a-T.org.
|
11
|
+
|
12
|
+
Thank you.
|
13
|
+
|
14
|
+
Copyright © 2021 ff.: the MoaT contributor(s), as per the git changelog(s).
|
@@ -1,22 +1,23 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: moat-src
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.8.2
|
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
|
7
|
-
Project-URL: repository, https://github.com/M-o-a-T/moat
|
7
|
+
Project-URL: repository, https://github.com/M-o-a-T/moat
|
8
8
|
Keywords: MoaT
|
9
9
|
Classifier: Intended Audience :: Developers
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
11
|
Classifier: Framework :: AsyncIO
|
12
12
|
Classifier: Framework :: Trio
|
13
13
|
Classifier: Framework :: AnyIO
|
14
|
-
Classifier: License :: OSI Approved
|
15
14
|
Classifier: Development Status :: 4 - Beta
|
16
15
|
Requires-Python: >=3.8
|
17
16
|
Description-Content-Type: text/x-rst
|
17
|
+
License-File: LICENSE.txt
|
18
18
|
Requires-Dist: anyio~=3.0
|
19
19
|
Requires-Dist: tomlkit~=0.12
|
20
20
|
Requires-Dist: asyncclick
|
21
21
|
Requires-Dist: gitpython
|
22
22
|
Requires-Dist: packaging
|
23
|
+
Dynamic: license-file
|