Skip to content

Commit 465af6d

Browse files
committed
smtplib: Update metadata
1 parent b866d05 commit 465af6d

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

smtplib/metadata.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
srctype=dummy
1+
srctype = cpython
22
type=module
33
version = 0.0.1
4+
depends = hmac

smtplib/setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88

99
setup(name='micropython-smtplib',
1010
version='0.0.1',
11-
description='Dummy smtplib module for MicroPython',
12-
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.',
11+
description='CPython smtplib module ported to MicroPython',
12+
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
1313
url='https://github.com/micropython/micropython-lib',
14-
author='MicroPython Developers',
15-
author_email='micro-python@googlegroups.com',
14+
author='CPython Developers',
15+
author_email='python[email protected]',
1616
maintainer='MicroPython Developers',
1717
maintainer_email='[email protected]',
18-
license='MIT',
18+
license='Python',
1919
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
20-
py_modules=['smtplib'])
20+
py_modules=['smtplib'],
21+
install_requires=['micropython-hmac'])

0 commit comments

Comments
 (0)