summaryrefslogtreecommitdiff
path: root/extmod/asyncio/manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'extmod/asyncio/manifest.py')
-rw-r--r--extmod/asyncio/manifest.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/extmod/asyncio/manifest.py b/extmod/asyncio/manifest.py
new file mode 100644
index 000000000..0aba5b185
--- /dev/null
+++ b/extmod/asyncio/manifest.py
@@ -0,0 +1,15 @@
+# This list of package files doesn't include task.py because that's provided
+# by the C module.
+package(
+ "asyncio",
+ (
+ "__init__.py",
+ "core.py",
+ "event.py",
+ "funcs.py",
+ "lock.py",
+ "stream.py",
+ ),
+ base_path="..",
+ opt=3,
+)