diff --git a/base64/metadata.txt b/base64/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/base64/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/base64/setup.py b/base64/setup.py index bdb2cb1f..3453c327 100644 --- a/base64/setup.py +++ b/base64/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'base64' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-base64', + version='0.0.1', + description='Dummy base64 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['base64']) diff --git a/binascii/metadata.txt b/binascii/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/binascii/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/binascii/setup.py b/binascii/setup.py index 824e21ef..a970e6ad 100644 --- a/binascii/setup.py +++ b/binascii/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'binascii' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-binascii', + version='0.0.1', + description='Dummy binascii 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['binascii']) diff --git a/binhex/metadata.txt b/binhex/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/binhex/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/binhex/setup.py b/binhex/setup.py index a4e04459..50cc72d2 100644 --- a/binhex/setup.py +++ b/binhex/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'binhex' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-binhex', + version='0.0.1', + 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['binhex']) diff --git a/datetime/metadata.txt b/datetime/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/datetime/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/datetime/setup.py b/datetime/setup.py index a857555f..ca6f144d 100644 --- a/datetime/setup.py +++ b/datetime/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'datetime' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-datetime', + version='0.0.1', + description='Dummy datetime 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['datetime']) diff --git a/glob/metadata.txt b/glob/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/glob/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/glob/setup.py b/glob/setup.py index e1942aeb..63aa6bf5 100644 --- a/glob/setup.py +++ b/glob/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'glob' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-glob', + version='0.0.1', + description='Dummy glob 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['glob']) diff --git a/gzip/metadata.txt b/gzip/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/gzip/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/gzip/setup.py b/gzip/setup.py index 4007b65c..aeb1460e 100644 --- a/gzip/setup.py +++ b/gzip/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'gzip' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-gzip', + version='0.0.1', + description='Dummy gzip 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['gzip']) diff --git a/hashlib/metadata.txt b/hashlib/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/hashlib/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/hashlib/setup.py b/hashlib/setup.py index 47e6e611..3de13d5a 100644 --- a/hashlib/setup.py +++ b/hashlib/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'hashlib' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-hashlib', + version='0.0.1', + description='Dummy hashlib 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['hashlib']) diff --git a/pprint/metadata.txt b/pprint/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/pprint/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/pprint/setup.py b/pprint/setup.py index c8508b30..5de63463 100644 --- a/pprint/setup.py +++ b/pprint/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'pprint' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-pprint', + version='0.0.1', + 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['pprint']) diff --git a/queue/metadata.txt b/queue/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/queue/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/queue/setup.py b/queue/setup.py index af6eea93..c9a3c42f 100644 --- a/queue/setup.py +++ b/queue/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'queue' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-queue', + version='0.0.1', + 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['queue']) diff --git a/random/metadata.txt b/random/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/random/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/random/setup.py b/random/setup.py index bae37e0b..a4a0913e 100644 --- a/random/setup.py +++ b/random/setup.py @@ -1,14 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our +# Remove current dir from sys.path, otherwise setuptools will peek up our # module instead of system. sys.path.pop(0) from setuptools import setup + setup(name='micropython-random', - version='0.0.0', - description='dummy random module to MicroPython', + version='0.0.1', + 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/issues/405', author='MicroPython Developers', author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', py_modules=['random']) diff --git a/shlex/metadata.txt b/shlex/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/shlex/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/shlex/setup.py b/shlex/setup.py index 19a2fb34..26aff7b1 100644 --- a/shlex/setup.py +++ b/shlex/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'shlex' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-shlex', + version='0.0.1', + 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['shlex']) diff --git a/shutil/metadata.txt b/shutil/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/shutil/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/shutil/setup.py b/shutil/setup.py index 18686f1c..cf0fbeae 100644 --- a/shutil/setup.py +++ b/shutil/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'shutil' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-shutil', + version='0.0.1', + description='Dummy shutil 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['shutil']) diff --git a/stat/metadata.txt b/stat/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/stat/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/stat/setup.py b/stat/setup.py index ddef4f20..4634c7ab 100644 --- a/stat/setup.py +++ b/stat/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'stat' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-stat', + version='0.0.1', + description='Dummy stat 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['stat']) diff --git a/subprocess/metadata.txt b/subprocess/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/subprocess/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/subprocess/setup.py b/subprocess/setup.py index 618f745b..22a49a36 100644 --- a/subprocess/setup.py +++ b/subprocess/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'subprocess' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-subprocess', + version='0.0.1', + 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['subprocess']) diff --git a/tempfile/metadata.txt b/tempfile/metadata.txt new file mode 100644 index 00000000..34e7b20b --- /dev/null +++ b/tempfile/metadata.txt @@ -0,0 +1,3 @@ +srctype=dummy +type=module +version=0.0.1 diff --git a/tempfile/setup.py b/tempfile/setup.py index fc397afe..7fefb7c2 100644 --- a/tempfile/setup.py +++ b/tempfile/setup.py @@ -1,18 +1,18 @@ import sys -# Remove current dir from sys.path, otherwise distutils will peek up our -# module instead of system one. +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. sys.path.pop(0) -sys.path.insert(0, '..') from setuptools import setup -import metadata -NAME = 'tempfile' -setup(name='micropython-' + NAME, - version='0.0.0', - description=metadata.desc_dummy(NAME), - url=metadata.url, - author=metadata.author_upy_devels, - author_email=metadata.author_upy_devels_email, +setup(name='micropython-tempfile', + version='0.0.1', + 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/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', license='MIT', - py_modules=[NAME]) + py_modules=['tempfile'])