Skip to content

Commit c1f553e

Browse files
jimmodpgeorge
authored andcommitted
micropython/bundles: Add a bundle-networking meta-package.
This is designed to be a common set of packages that all deployments with networking support should include. Signed-off-by: Jim Mussared <[email protected]>
1 parent 863a018 commit c1f553e

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

micropython/bundles/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
These are "meta packages" designed to make it easy to provide defined
2+
bundles of related packages.
3+
4+
For example, all deployments of MicroPython with networking support
5+
(WiFi/Ethernet) should add `require("bundle-networking")` to their
6+
`manifest.py` to ensure that the the standard set of networking packages
7+
(including HTTP requests, WebREPL, NTP, package management) are included.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
metadata(
2+
version="0.1.0",
3+
metadata="Common networking packages for all network-capable deployments of MicroPython.",
4+
)
5+
6+
require("mip")
7+
require("ntptime")
8+
require("urequests")
9+
require("webrepl")

0 commit comments

Comments
 (0)