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.
@@ -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/
@@ -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
+
@@ -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
@@ -0,0 +1,5 @@
1
+ __path__ = __import__("pkgutil").extend_path(__path__, __name__)
2
+
3
+ from moat._dev_fix import _fix
4
+
5
+ _fix()
File without changes