summaryrefslogtreecommitdiff
path: root/extmod/uasyncio/manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'extmod/uasyncio/manifest.py')
-rw-r--r--extmod/uasyncio/manifest.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/extmod/uasyncio/manifest.py b/extmod/uasyncio/manifest.py
index f5fa27bfc..d425a467b 100644
--- a/extmod/uasyncio/manifest.py
+++ b/extmod/uasyncio/manifest.py
@@ -1,13 +1,15 @@
-# This list of frozen files doesn't include task.py because that's provided by the C module.
-freeze(
- "..",
+# This list of package files doesn't include task.py because that's provided
+# by the C module.
+package(
+ "uasyncio",
(
- "uasyncio/__init__.py",
- "uasyncio/core.py",
- "uasyncio/event.py",
- "uasyncio/funcs.py",
- "uasyncio/lock.py",
- "uasyncio/stream.py",
+ "__init__.py",
+ "core.py",
+ "event.py",
+ "funcs.py",
+ "lock.py",
+ "stream.py",
),
+ base_path="..",
opt=3,
)