moat-src 0.3.1__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.3.1/.gitignore +45 -0
- moat-src-0.3.1/Makefile +15 -0
- moat-src-0.3.1/PKG-INFO +17 -0
- moat-src-0.3.1/moat/__init__.py +5 -0
- moat-src-0.3.1/moat/src/__init__.py +0 -0
- moat-src-0.3.1/moat/src/_main.py +815 -0
- moat-src-0.3.1/moat/src/_templates/LICENSE.txt +12 -0
- moat-src-0.3.1/moat/src/_templates/Makefile +15 -0
- moat-src-0.3.1/moat/src/_templates/gitignore +45 -0
- moat-src-0.3.1/moat/src/_templates/make/py +101 -0
- moat-src-0.3.1/moat/src/_templates/moat/__init__.py +5 -0
- moat-src-0.3.1/moat/src/_templates/pyproject.default.yaml +76 -0
- moat-src-0.3.1/moat/src/_templates/pyproject.forced.yaml +77 -0
- moat-src-0.3.1/moat/src/_templates/test_basic_py +11 -0
- moat-src-0.3.1/moat/src/inspect.py +62 -0
- moat-src-0.3.1/moat/src/test.py +53 -0
- moat-src-0.3.1/moat_src.egg-info/PKG-INFO +17 -0
- moat-src-0.3.1/moat_src.egg-info/SOURCES.txt +23 -0
- moat-src-0.3.1/moat_src.egg-info/dependency_links.txt +1 -0
- moat-src-0.3.1/moat_src.egg-info/requires.txt +5 -0
- moat-src-0.3.1/moat_src.egg-info/top_level.txt +1 -0
- moat-src-0.3.1/pyproject.toml +95 -0
- moat-src-0.3.1/setup.cfg +4 -0
- moat-src-0.3.1/tests/__init__.py +0 -0
- moat-src-0.3.1/tests/test_basic.py +12 -0
@@ -0,0 +1,45 @@
|
|
1
|
+
/debian/
|
2
|
+
.#*
|
3
|
+
\#*
|
4
|
+
/build/
|
5
|
+
.cache
|
6
|
+
/*.cfg
|
7
|
+
*,cover
|
8
|
+
.coverage
|
9
|
+
.coverage.*
|
10
|
+
/.coverage
|
11
|
+
/coverage.xml
|
12
|
+
/dist/
|
13
|
+
docs/_build/
|
14
|
+
docs/build/
|
15
|
+
/downloads/
|
16
|
+
/*.egg
|
17
|
+
/*.egg-info/
|
18
|
+
/.eggs/
|
19
|
+
/eggs/
|
20
|
+
/.env
|
21
|
+
/env/
|
22
|
+
/ENV/
|
23
|
+
/htmlcov/
|
24
|
+
/.hypothesis/
|
25
|
+
/.installed.cfg
|
26
|
+
*.log
|
27
|
+
*.manifest
|
28
|
+
*.mo
|
29
|
+
/obj/
|
30
|
+
/parts/
|
31
|
+
pip-delete-this-directory.txt
|
32
|
+
pip-log.txt
|
33
|
+
*.pot
|
34
|
+
/.pybuild/
|
35
|
+
__pycache__/
|
36
|
+
*.py[cod]
|
37
|
+
/.pytest_cache/
|
38
|
+
/sdist/
|
39
|
+
*.so
|
40
|
+
/tests/plugins/test.db
|
41
|
+
.tox/
|
42
|
+
/var/
|
43
|
+
/.venv
|
44
|
+
/venv/
|
45
|
+
/wheels/
|
moat-src-0.3.1/Makefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/make -f
|
2
|
+
|
3
|
+
PACKAGE = moat-src
|
4
|
+
MAKEINCL ?= $(shell python3 -mmoat src path)/make/py
|
5
|
+
|
6
|
+
ifneq ($(wildcard $(MAKEINCL)),)
|
7
|
+
include $(MAKEINCL)
|
8
|
+
# availabe via http://github.com/smurfix/sourcemgr
|
9
|
+
|
10
|
+
else
|
11
|
+
%:
|
12
|
+
@echo "Please fix 'python3 -mmoat src path'."
|
13
|
+
@exit 1
|
14
|
+
endif
|
15
|
+
|
moat-src-0.3.1/PKG-INFO
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: moat-src
|
3
|
+
Version: 0.3.1
|
4
|
+
Summary: Tools for managing the MoaT sources
|
5
|
+
Author-email: Matthias Urlichs <matthias@urlichs.de>
|
6
|
+
Project-URL: homepage, https://m-o-a-t.org
|
7
|
+
Project-URL: repository, https://github.com/M-o-a-T/moat-src
|
8
|
+
Keywords: MoaT
|
9
|
+
Classifier: Intended Audience :: Developers
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
11
|
+
Classifier: Framework :: AsyncIO
|
12
|
+
Classifier: Framework :: Trio
|
13
|
+
Classifier: Framework :: AnyIO
|
14
|
+
Classifier: License :: OSI Approved
|
15
|
+
Classifier: Development Status :: 4 - Beta
|
16
|
+
Requires-Python: >=3.8
|
17
|
+
Description-Content-Type: text/x-rst
|
File without changes
|