diff --git a/__future__/setup.py b/__future__/setup.py index 72394a9a..f237b312 100644 --- a/__future__/setup.py +++ b/__future__/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-future', description='Dummy __future__ module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/_libc/setup.py b/_libc/setup.py index 7ddd5eb9..81906915 100644 --- a/_libc/setup.py +++ b/_libc/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-libc', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/_markupbase/setup.py b/_markupbase/setup.py index c1360982..e0c6df84 100644 --- a/_markupbase/setup.py +++ b/_markupbase/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-_markupbase', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/abc/setup.py b/abc/setup.py index a70c6adf..8737a60e 100644 --- a/abc/setup.py +++ b/abc/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-abc', description='Dummy abc module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/array/setup.py b/array/setup.py index f9140608..0424a584 100644 --- a/array/setup.py +++ b/array/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-array', description='Dummy array module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/asyncio/setup.py b/asyncio/setup.py index e41bce70..2788bb03 100644 --- a/asyncio/setup.py +++ b/asyncio/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-asyncio', description='Dummy asyncio module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/base64/setup.py b/base64/setup.py index 9039c838..61b38da3 100644 --- a/base64/setup.py +++ b/base64/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-base64', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/binascii/setup.py b/binascii/setup.py index 63756cc5..3a86024d 100644 --- a/binascii/setup.py +++ b/binascii/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-binascii', url='https://github.com/micropython/micropython-lib', author='PyPy Developers', author_email='pypy-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/binhex/setup.py b/binhex/setup.py index ae3a6567..907bfe67 100644 --- a/binhex/setup.py +++ b/binhex/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-binhex', description='Dummy binhex module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/calendar/setup.py b/calendar/setup.py index 7eff1618..e8cc2752 100644 --- a/calendar/setup.py +++ b/calendar/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-calendar', description='Dummy calendar module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/cgi/setup.py b/cgi/setup.py index 0fd9941b..a020a457 100644 --- a/cgi/setup.py +++ b/cgi/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-cgi', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/cmd/setup.py b/cmd/setup.py index 1adb9dd0..c74a5bae 100644 --- a/cmd/setup.py +++ b/cmd/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-cmd', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/code/setup.py b/code/setup.py index b707c788..ae9291f7 100644 --- a/code/setup.py +++ b/code/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-code', description='Dummy code module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/codecs/setup.py b/codecs/setup.py index 079b9033..7abca3dc 100644 --- a/codecs/setup.py +++ b/codecs/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-codecs', description='Dummy codecs module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/codeop/setup.py b/codeop/setup.py index 3c06c381..3309b398 100644 --- a/codeop/setup.py +++ b/codeop/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-codeop', description='Dummy codeop module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/collections.defaultdict/setup.py b/collections.defaultdict/setup.py index 69135a3e..20fc8809 100644 --- a/collections.defaultdict/setup.py +++ b/collections.defaultdict/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-collections.defaultdict', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/collections.deque/setup.py b/collections.deque/setup.py index c56ffacf..9b92a444 100644 --- a/collections.deque/setup.py +++ b/collections.deque/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-collections.deque', description='collections.deque module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/collections/setup.py b/collections/setup.py index 6a4f247c..d795a6d6 100644 --- a/collections/setup.py +++ b/collections/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-collections', description='collections module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/concurrent.futures/setup.py b/concurrent.futures/setup.py index f1a85e53..163bca40 100644 --- a/concurrent.futures/setup.py +++ b/concurrent.futures/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-concurrent.futures', description='Dummy concurrent.futures module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/contextlib/setup.py b/contextlib/setup.py index c0e7932c..daa39f89 100644 --- a/contextlib/setup.py +++ b/contextlib/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-contextlib', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/copy/setup.py b/copy/setup.py index 6cc6be2a..d5fdf4d0 100644 --- a/copy/setup.py +++ b/copy/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-copy', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/cpython-uasyncio/setup.py b/cpython-uasyncio/setup.py index f58c0bf9..624222f2 100644 --- a/cpython-uasyncio/setup.py +++ b/cpython-uasyncio/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-cpython-uasyncio', description='MicroPython module uasyncio ported to CPython', long_description='This is MicroPython compatibility module, allowing applications using\nMicroPython-specific features to run on CPython.\n', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/csv/setup.py b/csv/setup.py index 83e57448..1c93d5c0 100644 --- a/csv/setup.py +++ b/csv/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-csv', description='Dummy csv module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/curses.ascii/setup.py b/curses.ascii/setup.py index 75a9279b..1c97c67f 100644 --- a/curses.ascii/setup.py +++ b/curses.ascii/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-curses.ascii', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/curses/setup.py b/curses/setup.py index e9bf2c92..07f4f90c 100644 --- a/curses/setup.py +++ b/curses/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-curses', description='Dummy curses module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/datetime/setup.py b/datetime/setup.py index 794f0feb..64c20474 100644 --- a/datetime/setup.py +++ b/datetime/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-datetime', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/dbm/setup.py b/dbm/setup.py index 02e1651f..83690550 100644 --- a/dbm/setup.py +++ b/dbm/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-dbm', description='Dummy dbm module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/decimal/setup.py b/decimal/setup.py index 3c91f369..05534353 100644 --- a/decimal/setup.py +++ b/decimal/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-decimal', description='Dummy decimal module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/difflib/setup.py b/difflib/setup.py index f879fced..f5cfa3d6 100644 --- a/difflib/setup.py +++ b/difflib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-difflib', description='Dummy difflib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/dis/setup.py b/dis/setup.py index a5eb2043..c79fb69c 100644 --- a/dis/setup.py +++ b/dis/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-dis', description='Dummy dis module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/dummy_threading/setup.py b/dummy_threading/setup.py index db9354a0..a249a362 100644 --- a/dummy_threading/setup.py +++ b/dummy_threading/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-dummy_threading', description='Dummy dummy_threading module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.charset/setup.py b/email.charset/setup.py index 9bb4a4d0..8722b5a6 100644 --- a/email.charset/setup.py +++ b/email.charset/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.charset', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.encoders/setup.py b/email.encoders/setup.py index f3d4b77c..4427937e 100644 --- a/email.encoders/setup.py +++ b/email.encoders/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.encoders', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.errors/setup.py b/email.errors/setup.py index 4566b6c5..7ec718b3 100644 --- a/email.errors/setup.py +++ b/email.errors/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.errors', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.feedparser/setup.py b/email.feedparser/setup.py index a2e7c6b5..3d27c28c 100644 --- a/email.feedparser/setup.py +++ b/email.feedparser/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.feedparser', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.header/setup.py b/email.header/setup.py index 8e779036..c4a94e75 100644 --- a/email.header/setup.py +++ b/email.header/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.header', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.internal/setup.py b/email.internal/setup.py index 97ded579..6e654295 100644 --- a/email.internal/setup.py +++ b/email.internal/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.internal', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.message/setup.py b/email.message/setup.py index 91e556f6..0e9823ab 100644 --- a/email.message/setup.py +++ b/email.message/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.message', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.parser/setup.py b/email.parser/setup.py index 8d8eb416..71a4b691 100644 --- a/email.parser/setup.py +++ b/email.parser/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.parser', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/email.utils/setup.py b/email.utils/setup.py index 43bdc97c..c5d7b600 100644 --- a/email.utils/setup.py +++ b/email.utils/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-email.utils', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/errno/setup.py b/errno/setup.py index 50a6fc92..034f805b 100644 --- a/errno/setup.py +++ b/errno/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-errno', description='errno module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/fcntl/setup.py b/fcntl/setup.py index 2e8cac68..f9195da9 100644 --- a/fcntl/setup.py +++ b/fcntl/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-fcntl', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/ffilib/setup.py b/ffilib/setup.py index c129e67b..a8b43441 100644 --- a/ffilib/setup.py +++ b/ffilib/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-ffilib', url='https://github.com/micropython/micropython-lib', author='Damien George', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/fnmatch/setup.py b/fnmatch/setup.py index a596cb4b..ca484854 100644 --- a/fnmatch/setup.py +++ b/fnmatch/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-fnmatch', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/formatter/setup.py b/formatter/setup.py index 545d58a0..f1645c17 100644 --- a/formatter/setup.py +++ b/formatter/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-formatter', description='Dummy formatter module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/fractions/setup.py b/fractions/setup.py index 33ff8921..eaa01ffd 100644 --- a/fractions/setup.py +++ b/fractions/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-fractions', description='Dummy fractions module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/ftplib/setup.py b/ftplib/setup.py index 7120d20b..b19c018d 100644 --- a/ftplib/setup.py +++ b/ftplib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-ftplib', description='Dummy ftplib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/functools/setup.py b/functools/setup.py index 28d5cbfb..3521b2d8 100644 --- a/functools/setup.py +++ b/functools/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-functools', description='functools module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/getopt/setup.py b/getopt/setup.py index 5f58ca24..7967e0fc 100644 --- a/getopt/setup.py +++ b/getopt/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-getopt', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/getpass/setup.py b/getpass/setup.py index ccbf2c89..b80d3860 100644 --- a/getpass/setup.py +++ b/getpass/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-getpass', description='Dummy getpass module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/gettext/setup.py b/gettext/setup.py index 3ec8a7b4..4fa86ca3 100644 --- a/gettext/setup.py +++ b/gettext/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-gettext', url='https://github.com/micropython/micropython-lib', author='Riccardo Magliocchetti', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/glob/setup.py b/glob/setup.py index 2a6478d5..6eec9912 100644 --- a/glob/setup.py +++ b/glob/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-glob', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/gzip/setup.py b/gzip/setup.py index 8fd4d0c1..c2c826f9 100644 --- a/gzip/setup.py +++ b/gzip/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-gzip', description='gzip module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/heapq/setup.py b/heapq/setup.py index 60628da1..28d5aa75 100644 --- a/heapq/setup.py +++ b/heapq/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-heapq', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/hmac/setup.py b/hmac/setup.py index 1b9a9321..ff0ed3e6 100644 --- a/hmac/setup.py +++ b/hmac/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-hmac', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/html.entities/setup.py b/html.entities/setup.py index 23530e4f..37551e81 100644 --- a/html.entities/setup.py +++ b/html.entities/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-html.entities', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/html.parser/setup.py b/html.parser/setup.py index dcd67bcf..c4504f6d 100644 --- a/html.parser/setup.py +++ b/html.parser/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-html.parser', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/html/setup.py b/html/setup.py index d63e2cad..6caa0b0b 100644 --- a/html/setup.py +++ b/html/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-html', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/http.client/setup.py b/http.client/setup.py index f9a30c51..221d3679 100644 --- a/http.client/setup.py +++ b/http.client/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-http.client', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/imaplib/setup.py b/imaplib/setup.py index bcdd7d7e..2a3b31fe 100644 --- a/imaplib/setup.py +++ b/imaplib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-imaplib', description='Dummy imaplib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/imp/setup.py b/imp/setup.py index c2ca58bc..dbb58654 100644 --- a/imp/setup.py +++ b/imp/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-imp', description='Dummy imp module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/importlib/setup.py b/importlib/setup.py index 6cf9a671..dfdb650e 100644 --- a/importlib/setup.py +++ b/importlib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-importlib', description='Dummy importlib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/inspect/setup.py b/inspect/setup.py index ce3483c0..eb1370cf 100644 --- a/inspect/setup.py +++ b/inspect/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-inspect', description='inspect module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/io/setup.py b/io/setup.py index 66c9300f..ca44629f 100644 --- a/io/setup.py +++ b/io/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-io', description='Dummy io module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/ipaddress/setup.py b/ipaddress/setup.py index ada57986..698cd78c 100644 --- a/ipaddress/setup.py +++ b/ipaddress/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-ipaddress', description='Dummy ipaddress module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/itertools/setup.py b/itertools/setup.py index ebc14bf9..6348bb6d 100644 --- a/itertools/setup.py +++ b/itertools/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-itertools', description='itertools module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/linecache/setup.py b/linecache/setup.py index 347d9f35..a8538814 100644 --- a/linecache/setup.py +++ b/linecache/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-linecache', description='Dummy linecache module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/locale/setup.py b/locale/setup.py index 2bfc3a3b..07b17038 100644 --- a/locale/setup.py +++ b/locale/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-locale', description='Dummy locale module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/logging/setup.py b/logging/setup.py index 17e82bb8..d4ba17d9 100644 --- a/logging/setup.py +++ b/logging/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-logging', description='logging module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/machine/setup.py b/machine/setup.py index 2849c291..0f033cdc 100644 --- a/machine/setup.py +++ b/machine/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-machine', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/mailbox/setup.py b/mailbox/setup.py index f1de21ab..c3bb3d99 100644 --- a/mailbox/setup.py +++ b/mailbox/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-mailbox', description='Dummy mailbox module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/mailcap/setup.py b/mailcap/setup.py index 71c2a65c..ca062d81 100644 --- a/mailcap/setup.py +++ b/mailcap/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-mailcap', description='Dummy mailcap module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/math/setup.py b/math/setup.py index 92f107f2..209776fa 100644 --- a/math/setup.py +++ b/math/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-math', description='Dummy math module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/mimetypes/setup.py b/mimetypes/setup.py index abbc6407..6c0857b3 100644 --- a/mimetypes/setup.py +++ b/mimetypes/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-mimetypes', description='Dummy mimetypes module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/multiprocessing/setup.py b/multiprocessing/setup.py index 11312ad1..008bbb12 100644 --- a/multiprocessing/setup.py +++ b/multiprocessing/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-multiprocessing', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/nntplib/setup.py b/nntplib/setup.py index 9ea54f4a..b7239c48 100644 --- a/nntplib/setup.py +++ b/nntplib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-nntplib', description='Dummy nntplib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/numbers/setup.py b/numbers/setup.py index e416b68a..ed2b51be 100644 --- a/numbers/setup.py +++ b/numbers/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-numbers', description='Dummy numbers module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/operator/setup.py b/operator/setup.py index 11d79274..8509c385 100644 --- a/operator/setup.py +++ b/operator/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-operator', description='operator module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/optparse/setup.py b/optparse/setup.py index ef3f817b..0475e9a0 100644 --- a/optparse/setup.py +++ b/optparse/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-optparse', description='Dummy optparse module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/os.path/setup.py b/os.path/setup.py index 0a3a4eec..6d4a630d 100644 --- a/os.path/setup.py +++ b/os.path/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-os.path', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/os/setup.py b/os/setup.py index e7371c08..8c318c74 100644 --- a/os/setup.py +++ b/os/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-os', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pathlib/setup.py b/pathlib/setup.py index 3b5b2162..7b49a72b 100644 --- a/pathlib/setup.py +++ b/pathlib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-pathlib', description='Dummy pathlib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pdb/setup.py b/pdb/setup.py index 07cdbe8b..bae43b38 100644 --- a/pdb/setup.py +++ b/pdb/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-pdb', description='Dummy pdb module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pickletools/setup.py b/pickletools/setup.py index 0ef61da1..c311e0fb 100644 --- a/pickletools/setup.py +++ b/pickletools/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-pickletools', description='Dummy pickletools module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pkg_resources/setup.py b/pkg_resources/setup.py index 97ae354d..80689c9c 100644 --- a/pkg_resources/setup.py +++ b/pkg_resources/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-pkg_resources', description='pkg_resources module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pkgutil/setup.py b/pkgutil/setup.py index 361d34be..495b7f7c 100644 --- a/pkgutil/setup.py +++ b/pkgutil/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-pkgutil', description='pkgutil module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/platform/setup.py b/platform/setup.py index 7f0ba027..0e778381 100644 --- a/platform/setup.py +++ b/platform/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-platform', description='Dummy platform module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/poplib/setup.py b/poplib/setup.py index 0a48fae8..c34bae8f 100644 --- a/poplib/setup.py +++ b/poplib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-poplib', description='Dummy poplib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/posixpath/setup.py b/posixpath/setup.py index ec337b84..1dac53e2 100644 --- a/posixpath/setup.py +++ b/posixpath/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-posixpath', description='Dummy posixpath module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pprint/setup.py b/pprint/setup.py index 4b7d2109..b54537f4 100644 --- a/pprint/setup.py +++ b/pprint/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-pprint', description='Dummy pprint module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/profile/setup.py b/profile/setup.py index 3717b2e5..cc666646 100644 --- a/profile/setup.py +++ b/profile/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-profile', description='Dummy profile module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pty/setup.py b/pty/setup.py index 91ef1091..fefdff08 100644 --- a/pty/setup.py +++ b/pty/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-pty', description='Dummy pty module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pwd/setup.py b/pwd/setup.py index 25a14aa5..613031c4 100644 --- a/pwd/setup.py +++ b/pwd/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-pwd', url='https://github.com/micropython/micropython-lib', author='Riccardo Magliocchetti', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pystone/setup.py b/pystone/setup.py index ba88ab2a..05dfb328 100644 --- a/pystone/setup.py +++ b/pystone/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-pystone', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/pystone_lowmem/setup.py b/pystone_lowmem/setup.py index 06ea876f..8d2826e4 100644 --- a/pystone_lowmem/setup.py +++ b/pystone_lowmem/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-pystone_lowmem', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/queue/setup.py b/queue/setup.py index 9eedd3e3..1d28be81 100644 --- a/queue/setup.py +++ b/queue/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-queue', description='Dummy queue module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/quopri/setup.py b/quopri/setup.py index b630d5bb..18ed36ca 100644 --- a/quopri/setup.py +++ b/quopri/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-quopri', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/random/setup.py b/random/setup.py index d60ec5a0..cb1fc8ca 100644 --- a/random/setup.py +++ b/random/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-random', description='Dummy random module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/re-pcre/setup.py b/re-pcre/setup.py index 5ee11757..4c044e58 100644 --- a/re-pcre/setup.py +++ b/re-pcre/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-re-pcre', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/readline/setup.py b/readline/setup.py index faf8bed1..dd24fdfe 100644 --- a/readline/setup.py +++ b/readline/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-readline', description='Dummy readline module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/reprlib/setup.py b/reprlib/setup.py index 6c2b2689..e002d323 100644 --- a/reprlib/setup.py +++ b/reprlib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-reprlib', description='Dummy reprlib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/runpy/setup.py b/runpy/setup.py index 9dc0ccfc..c48efeee 100644 --- a/runpy/setup.py +++ b/runpy/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-runpy', description='Dummy runpy module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/sched/setup.py b/sched/setup.py index 9878d024..43be4777 100644 --- a/sched/setup.py +++ b/sched/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-sched', description='Dummy sched module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/select/setup.py b/select/setup.py index 3e567537..77525a5f 100644 --- a/select/setup.py +++ b/select/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-select', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/selectors/setup.py b/selectors/setup.py index 82f7c675..2b49021a 100644 --- a/selectors/setup.py +++ b/selectors/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-selectors', description='Dummy selectors module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/shelve/setup.py b/shelve/setup.py index 60e1797b..bdc0c086 100644 --- a/shelve/setup.py +++ b/shelve/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-shelve', description='Dummy shelve module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/shlex/setup.py b/shlex/setup.py index d3ed920f..2c5fb814 100644 --- a/shlex/setup.py +++ b/shlex/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-shlex', description='Dummy shlex module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/shutil/setup.py b/shutil/setup.py index 5f08ff2d..06e55091 100644 --- a/shutil/setup.py +++ b/shutil/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-shutil', description='shutil module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/signal/setup.py b/signal/setup.py index 3a3a65ef..96609a19 100644 --- a/signal/setup.py +++ b/signal/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-signal', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/smtplib/setup.py b/smtplib/setup.py index 5cd8a94e..518142a7 100644 --- a/smtplib/setup.py +++ b/smtplib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-smtplib', description='Dummy smtplib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/socket/setup.py b/socket/setup.py index 643f3054..ef01cbc6 100644 --- a/socket/setup.py +++ b/socket/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-socket', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/socketserver/setup.py b/socketserver/setup.py index 2de2c125..4fb8068d 100644 --- a/socketserver/setup.py +++ b/socketserver/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-socketserver', description='Dummy socketserver module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/sqlite3/setup.py b/sqlite3/setup.py index e66b4e0a..be600313 100644 --- a/sqlite3/setup.py +++ b/sqlite3/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-sqlite3', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/stat/setup.py b/stat/setup.py index 42560403..3e62f947 100644 --- a/stat/setup.py +++ b/stat/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-stat', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/statistics/setup.py b/statistics/setup.py index 429de9bf..04b31606 100644 --- a/statistics/setup.py +++ b/statistics/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-statistics', description='Dummy statistics module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/string/setup.py b/string/setup.py index ba3427b2..44c6d25f 100644 --- a/string/setup.py +++ b/string/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-string', description='string module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/stringprep/setup.py b/stringprep/setup.py index 002d527d..b81a7b39 100644 --- a/stringprep/setup.py +++ b/stringprep/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-stringprep', description='Dummy stringprep module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/struct/setup.py b/struct/setup.py index bd3a1cf7..afedf6c6 100644 --- a/struct/setup.py +++ b/struct/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-struct', description='struct module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/subprocess/setup.py b/subprocess/setup.py index 88b36b4b..a067cbe1 100644 --- a/subprocess/setup.py +++ b/subprocess/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-subprocess', description='Dummy subprocess module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/sys/setup.py b/sys/setup.py index d32427a6..3852801f 100644 --- a/sys/setup.py +++ b/sys/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-sys', description='Dummy sys module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/tarfile/setup.py b/tarfile/setup.py index 1f771a37..eb0d1648 100644 --- a/tarfile/setup.py +++ b/tarfile/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-tarfile', description='Dummy tarfile module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/telnetlib/setup.py b/telnetlib/setup.py index c6eded78..a7d6a941 100644 --- a/telnetlib/setup.py +++ b/telnetlib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-telnetlib', description='Dummy telnetlib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/tempfile/setup.py b/tempfile/setup.py index 81057d45..5bdc3e82 100644 --- a/tempfile/setup.py +++ b/tempfile/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-tempfile', description='Dummy tempfile module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/test.pystone/setup.py b/test.pystone/setup.py index 47b44797..e61c8324 100644 --- a/test.pystone/setup.py +++ b/test.pystone/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-test.pystone', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/test.support/setup.py b/test.support/setup.py index 3ac3ac42..c9e8c12c 100644 --- a/test.support/setup.py +++ b/test.support/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-test.support', description='test.support module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/textwrap/setup.py b/textwrap/setup.py index e467f70e..c03030da 100644 --- a/textwrap/setup.py +++ b/textwrap/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-textwrap', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/threading/setup.py b/threading/setup.py index 51df57e6..151001ce 100644 --- a/threading/setup.py +++ b/threading/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-threading', description='threading module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/time/setup.py b/time/setup.py index 697ec366..0e666b0a 100644 --- a/time/setup.py +++ b/time/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-time', description='time module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/timeit/setup.py b/timeit/setup.py index c2e895e7..598fe208 100644 --- a/timeit/setup.py +++ b/timeit/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-timeit', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/trace/setup.py b/trace/setup.py index e2b2b28d..ac48ae71 100644 --- a/trace/setup.py +++ b/trace/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-trace', description='Dummy trace module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/traceback/setup.py b/traceback/setup.py index d2467970..aaf902fc 100644 --- a/traceback/setup.py +++ b/traceback/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-traceback', description='traceback module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/tty/setup.py b/tty/setup.py index 67ddda80..a6bebea0 100644 --- a/tty/setup.py +++ b/tty/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-tty', description='tty module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/typing/setup.py b/typing/setup.py index aa71ab52..814b358c 100644 --- a/typing/setup.py +++ b/typing/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-typing', description='Dummy typing module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/uasyncio.core/setup.py b/uasyncio.core/setup.py index 6edfc9db..5d9465cf 100644 --- a/uasyncio.core/setup.py +++ b/uasyncio.core/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-uasyncio.core', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/uasyncio.queues/setup.py b/uasyncio.queues/setup.py index b4f896c8..4b855a69 100644 --- a/uasyncio.queues/setup.py +++ b/uasyncio.queues/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-uasyncio.queues', description='uasyncio.queues module for MicroPython', long_description='Port of asyncio.queues to uasyncio.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/uasyncio.synchro/setup.py b/uasyncio.synchro/setup.py index b6075678..68efab13 100644 --- a/uasyncio.synchro/setup.py +++ b/uasyncio.synchro/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-uasyncio.synchro', description='Synchronization primitives for uasyncio.', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/uasyncio.udp/setup.py b/uasyncio.udp/setup.py index 01f891ea..c9e9b424 100644 --- a/uasyncio.udp/setup.py +++ b/uasyncio.udp/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-uasyncio.udp', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/ucontextlib/setup.py b/ucontextlib/setup.py index 37d4b7d2..4f3af1b5 100644 --- a/ucontextlib/setup.py +++ b/ucontextlib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-ucontextlib', description='ucontextlib module for MicroPython', long_description='Minimal subset of contextlib for MicroPython low-memory ports', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/ucurses/setup.py b/ucurses/setup.py index 7b172922..7f102ce8 100644 --- a/ucurses/setup.py +++ b/ucurses/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-ucurses', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/udnspkt/setup.py b/udnspkt/setup.py index 679ce9c5..15e13409 100644 --- a/udnspkt/setup.py +++ b/udnspkt/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-udnspkt', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/umqtt.robust/setup.py b/umqtt.robust/setup.py index 7c1c511c..8d6e826d 100644 --- a/umqtt.robust/setup.py +++ b/umqtt.robust/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-umqtt.robust', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/umqtt.simple/setup.py b/umqtt.simple/setup.py index 1e4d8aaa..18d54828 100644 --- a/umqtt.simple/setup.py +++ b/umqtt.simple/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-umqtt.simple', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/unicodedata/setup.py b/unicodedata/setup.py index 7f541ff1..dc74b612 100644 --- a/unicodedata/setup.py +++ b/unicodedata/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-unicodedata', description='Dummy unicodedata module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/unittest/setup.py b/unittest/setup.py index 6ddc3b1d..c0b96888 100644 --- a/unittest/setup.py +++ b/unittest/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-unittest', description='unittest module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/upysh/setup.py b/upysh/setup.py index 640f27a0..2f677e69 100644 --- a/upysh/setup.py +++ b/upysh/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-upysh', description='Minimalistic file shell using native Python syntax.', long_description='Minimalistic file shell using native Python syntax.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/urllib.parse/setup.py b/urllib.parse/setup.py index 3f241d7e..a85e368e 100644 --- a/urllib.parse/setup.py +++ b/urllib.parse/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-urllib.parse', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/utarfile/setup.py b/utarfile/setup.py index 15be8ccb..5978fd7f 100644 --- a/utarfile/setup.py +++ b/utarfile/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-utarfile', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/uu/setup.py b/uu/setup.py index d7b18e55..1c4325e4 100644 --- a/uu/setup.py +++ b/uu/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-uu', url='https://github.com/micropython/micropython-lib', author='CPython Developers', author_email='python-dev@python.org', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='Python', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/uuid/setup.py b/uuid/setup.py index e0afe71e..b5a4d6c7 100644 --- a/uuid/setup.py +++ b/uuid/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-uuid', description='Dummy uuid module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/venv/setup.py b/venv/setup.py index ab9b92c7..cbd2b726 100644 --- a/venv/setup.py +++ b/venv/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-venv', description='Dummy venv module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/warnings/setup.py b/warnings/setup.py index e4b536fb..e647475f 100644 --- a/warnings/setup.py +++ b/warnings/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-warnings', description='warnings module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/weakref/setup.py b/weakref/setup.py index a8c2e549..7404074f 100644 --- a/weakref/setup.py +++ b/weakref/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-weakref', description='Dummy weakref module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/xmltok/setup.py b/xmltok/setup.py index 14baa2cc..85e08933 100644 --- a/xmltok/setup.py +++ b/xmltok/setup.py @@ -13,7 +13,7 @@ setup(name='micropython-xmltok', url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/zipfile/setup.py b/zipfile/setup.py index 55c229c1..24ee8ed6 100644 --- a/zipfile/setup.py +++ b/zipfile/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-zipfile', description='Dummy zipfile module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip}, diff --git a/zlib/setup.py b/zlib/setup.py index 43bbc713..32ddd21d 100644 --- a/zlib/setup.py +++ b/zlib/setup.py @@ -11,9 +11,9 @@ setup(name='micropython-zlib', description='Dummy zlib module for MicroPython', 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.', url='https://github.com/micropython/micropython-lib', - author='MicroPython Developers', + author='micropython-lib Developers', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},