kopia lustrzana https://github.com/micropython/micropython-lib
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 <jim.mussared@gmail.com>pull/598/head
rodzic
863a018b89
commit
c1f553eab9
|
@ -0,0 +1,7 @@
|
||||||
|
These are "meta packages" designed to make it easy to provide defined
|
||||||
|
bundles of related packages.
|
||||||
|
|
||||||
|
For example, all deployments of MicroPython with networking support
|
||||||
|
(WiFi/Ethernet) should add `require("bundle-networking")` to their
|
||||||
|
`manifest.py` to ensure that the the standard set of networking packages
|
||||||
|
(including HTTP requests, WebREPL, NTP, package management) are included.
|
|
@ -0,0 +1,9 @@
|
||||||
|
metadata(
|
||||||
|
version="0.1.0",
|
||||||
|
metadata="Common networking packages for all network-capable deployments of MicroPython.",
|
||||||
|
)
|
||||||
|
|
||||||
|
require("mip")
|
||||||
|
require("ntptime")
|
||||||
|
require("urequests")
|
||||||
|
require("webrepl")
|
Ładowanie…
Reference in New Issue