Skip to content

Commit 15afe94

Browse files
committed
poplib: Add dummy module.
1 parent 8961c5f commit 15afe94

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

poplib/metadata.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
srctype=dummy
2+
type=module
3+
version=0.0.0

poplib/poplib.py

Whitespace-only changes.

poplib/setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import sys
2+
# Remove current dir from sys.path, otherwise setuptools will peek up our
3+
# module instead of system.
4+
sys.path.pop(0)
5+
from setuptools import setup
6+
7+
8+
setup(name='micropython-poplib',
9+
version='0.0.0',
10+
description='Dummy poplib module for MicroPython',
11+
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
12+
url='https://github.com/micropython/micropython/issues/405',
13+
author='MicroPython Developers',
14+
author_email='[email protected]',
15+
maintainer='MicroPython Developers',
16+
maintainer_email='[email protected]',
17+
license='MIT',
18+
py_modules=['poplib'])

0 commit comments

Comments
 (0)