Skip to content

top: Replace setup.py/metadata.txt with manifest.py. #506

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 1 addition & 7 deletions micropython/bluetooth/aioble/manifest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import os

_files = (
"__init__.py",
"core.py",
Expand All @@ -26,8 +24,4 @@
if options.security:
_files += ("security.py",)

freeze(
".",
tuple(os.path.join("aioble", f) for f in _files),
opt=3,
)
package("aioble", files=_files)
3 changes: 0 additions & 3 deletions micropython/test.support/metadata.txt

This file was deleted.

24 changes: 0 additions & 24 deletions micropython/test.support/setup.py

This file was deleted.

5 changes: 5 additions & 0 deletions micropython/uaiohttpclient/manifest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
metadata(description="HTTP client module for MicroPython uasyncio module", version="0.5.1")

# Originally written by Paul Sokolovsky.

module("uaiohttpclient.py")
6 changes: 0 additions & 6 deletions micropython/uaiohttpclient/metadata.txt

This file was deleted.

24 changes: 0 additions & 24 deletions micropython/uaiohttpclient/setup.py

This file was deleted.

5 changes: 5 additions & 0 deletions micropython/ucontextlib/manifest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
metadata(
description="Minimal subset of contextlib for MicroPython low-memory ports", version="0.1.1"
)

module("ucontextlib.py")
5 changes: 0 additions & 5 deletions micropython/ucontextlib/metadata.txt

This file was deleted.

24 changes: 0 additions & 24 deletions micropython/ucontextlib/setup.py

This file was deleted.

5 changes: 5 additions & 0 deletions micropython/udnspkt/manifest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
metadata(description="Make and parse DNS packets (Sans I/O approach).", version="0.1")

# Originally written by Paul Sokolovsky.

module("udnspkt.py")
5 changes: 0 additions & 5 deletions micropython/udnspkt/metadata.txt

This file was deleted.

24 changes: 0 additions & 24 deletions micropython/udnspkt/setup.py

This file was deleted.

7 changes: 7 additions & 0 deletions micropython/umqtt.robust/manifest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
metadata(
description='Lightweight MQTT client for MicroPython ("robust" version).', version="1.0.1"
)

# Originally written by Paul Sokolovsky.

package("umqtt")
6 changes: 0 additions & 6 deletions micropython/umqtt.robust/metadata.txt

This file was deleted.

24 changes: 0 additions & 24 deletions micropython/umqtt.robust/setup.py

This file was deleted.

5 changes: 5 additions & 0 deletions micropython/umqtt.simple/manifest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
metadata(description="Lightweight MQTT client for MicroPython.", version="1.3.4")

# Originally written by Paul Sokolovsky.

package("umqtt")
6 changes: 0 additions & 6 deletions micropython/umqtt.simple/metadata.txt

This file was deleted.

24 changes: 0 additions & 24 deletions micropython/umqtt.simple/setup.py

This file was deleted.

13 changes: 0 additions & 13 deletions micropython/upip/Makefile

This file was deleted.

19 changes: 0 additions & 19 deletions micropython/upip/bootstrap_upip.sh

This file was deleted.

7 changes: 0 additions & 7 deletions micropython/upip/metadata.txt

This file was deleted.

24 changes: 0 additions & 24 deletions micropython/upip/setup.py

This file was deleted.

Loading