all: setup.py: New releases for gzip 4k conversion.

pull/117/head
Paul Sokolovsky 2016-10-11 06:47:01 +03:00
rodzic 65fb3707ba
commit dfe4dee62a
139 zmienionych plików z 834 dodań i 556 usunięć

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-abc',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['abc'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-argparse',
version='0.3.2',
version='0.3.3',
description='argparse 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Damien George',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['argparse'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-base64',
version='3.3.3-2',
version='3.3.3-3',
description='CPython base64 module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['base64'],
install_requires=['micropython-struct'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-binascii',
version='2.4.0-3',
version='2.4.0-4',
description='PyPy binascii module ported to MicroPython',
long_description='This is a module ported from PyPy standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='PyPy Developers',
author_email='pypy-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['binascii'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-binhex',
version='0.0.1',
version='0.0.2',
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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['binhex'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-calendar',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['calendar'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-cgi',
version='3.3.3-1',
version='3.3.3-2',
description='CPython cgi module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['cgi'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-cmd',
version='3.4.0-1',
version='3.4.0-2',
description='CPython cmd module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['cmd'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-collections.defaultdict',
version='0.2.1',
version='0.2.2',
description='collections.defaultdict 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['collections'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-collections.deque',
version='0.1.2',
version='0.1.3',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['collections'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-collections',
version='0.1.1',
version='0.1.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['collections'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-concurrent.futures',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['concurrent'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-contextlib',
version='3.4.2-3',
version='3.4.2-4',
description='CPython contextlib module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['contextlib'],
install_requires=['micropython-ucontextlib', 'micropython-collections'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-cpython-uasyncio',
version='0.2',
version='0.2.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['uasyncio'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-csv',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['csv'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-curses.ascii',
version='3.4.2',
version='3.4.2-1',
description='CPython curses.ascii module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['curses'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-datetime',
version='0.0.1',
version='0.0.2',
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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['datetime'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-dbm',
version='0.0.1',
version='0.0.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['dbm'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-decimal',
version='0.0.1',
version='0.0.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['decimal'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-difflib',
version='0.0.1',
version='0.0.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['difflib'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.charset',
version='0.5',
version='0.5.1',
description='CPython email.charset module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-functools', 'micropython-email.encoders', 'micropython-email.errors'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.encoders',
version='0.5',
version='0.5.1',
description='CPython email.encoders module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-base64', 'micropython-binascii', 'micropython-quopri', 'micropython-re-pcre', 'micropython-string'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.errors',
version='0.5',
version='0.5.1',
description='CPython email.errors module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.feedparser',
version='0.5',
version='0.5.1',
description='CPython email.feedparser module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-re-pcre', 'micropython-email.errors', 'micropython-email.message', 'micropython-email.internal'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.header',
version='0.5.1',
version='0.5.2',
description='CPython email.header module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-re-pcre', 'micropython-binascii', 'micropython-email.encoders', 'micropython-email.errors', 'micropython-email.charset'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.internal',
version='0.5',
version='0.5.1',
description='CPython email.internal module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-re-pcre', 'micropython-base64', 'micropython-binascii', 'micropython-functools', 'micropython-string', 'micropython-calendar', 'micropython-abc', 'micropython-email.errors', 'micropython-email.header', 'micropython-email.charset', 'micropython-email.utils'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.message',
version='0.5.2',
version='0.5.3',
description='CPython email.message module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-re-pcre', 'micropython-uu', 'micropython-base64', 'micropython-binascii', 'micropython-email.utils', 'micropython-email.errors', 'micropython-email.charset'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.parser',
version='0.5',
version='0.5.1',
description='CPython email.parser module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-warnings', 'micropython-email.feedparser', 'micropython-email.message', 'micropython-email.internal'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-email.utils',
version='3.3.3-1',
version='3.3.3-2',
description='CPython email.utils module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['email'],
install_requires=['micropython-os', 'micropython-re-pcre', 'micropython-base64', 'micropython-random', 'micropython-datetime', 'micropython-urllib.parse', 'micropython-warnings', 'micropython-quopri', 'micropython-email.charset'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-errno',
version='0.1.3',
version='0.1.4',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['errno'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-fcntl',
version='0.0.3',
version='0.0.4',
description='fcntl 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['fcntl'],
install_requires=['micropython-ffilib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-ffilib',
version='0.1.2',
version='0.1.3',
description='MicroPython FFI helper module',
long_description='MicroPython FFI helper module to easily interface with underlying shared libraries',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Damien George',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['ffilib'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-fnmatch',
version='0.5.1',
version='0.5.2',
description='CPython fnmatch module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['fnmatch'],
install_requires=['micropython-os', 'micropython-os.path', 'micropython-posixpath', 'micropython-re-pcre'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-formatter',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['formatter'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-fractions',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['fractions'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-ftplib',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['ftplib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-functools',
version='0.0.4',
version='0.0.5',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['functools'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-getopt',
version='3.3.3',
version='3.3.3-1',
description='CPython getopt module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['getopt'],
install_requires=['micropython-os'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-getpass',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['getpass'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-gettext',
version='0.0.0',
version='0.0.1',
description='Dummy gettext 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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['gettext'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-glob',
version='0.5.1',
version='0.5.2',
description='CPython glob module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['glob'],
install_requires=['micropython-os', 'micropython-re-pcre', 'micropython-fnmatch'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-gzip',
version='0.1',
version='0.1.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['gzip'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-hashlib',
version='2.4.0-2',
version='2.4.0-3',
description='PyPy hashlib module ported to MicroPython',
long_description='This is a module ported from PyPy standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='PyPy Developers',
author_email='pypy-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['hashlib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-heapq',
version='0.9.2',
version='0.9.3',
description='CPython heapq module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['heapq'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-hmac',
version='3.4.2-1',
version='3.4.2-2',
description='CPython hmac module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['hmac'],
install_requires=['micropython-warnings', 'micropython-hashlib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-html.entities',
version='3.3.3',
version='3.3.3-1',
description='CPython html.entities module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['html'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-html.parser',
version='3.3.3-1',
version='3.3.3-2',
description='CPython html.parser module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['html'],
install_requires=['micropython-_markupbase', 'micropython-warnings', 'micropython-html.entities', 'micropython-re-pcre'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-html',
version='3.3.3-1',
version='3.3.3-2',
description='CPython html module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['html'],
install_requires=['micropython-string'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-http.client',
version='0.5',
version='0.5.1',
description='CPython http.client module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['http'],
install_requires=['micropython-email.parser', 'micropython-email.message', 'micropython-socket', 'micropython-collections', 'micropython-urllib.parse', 'micropython-warnings'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-imaplib',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['imaplib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-imp',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['imp'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-inspect',
version='0.1.1',
version='0.1.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['inspect'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-io',
version='0.0.2',
version='0.0.3',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['io'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-ipaddress',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['ipaddress'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-itertools',
version='0.2.1',
version='0.2.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['itertools'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-linecache',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['linecache'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-locale',
version='0.0.1',
version='0.0.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['locale'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-logging',
version='0.1.2',
version='0.1.3',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['logging'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-machine',
version='0.1',
version='0.1.1',
description='machine 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['machine'],
install_requires=['micropython-ffilib', 'micropython-os', 'micropython-signal'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-mailbox',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['mailbox'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-mailcap',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['mailcap'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-mimetypes',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['mimetypes'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-multiprocessing',
version='0.1',
version='0.1.1',
description='multiprocessing 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['multiprocessing'],
install_requires=['micropython-os', 'micropython-select', 'micropython-pickle'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-nntplib',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['nntplib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-numbers',
version='0.0.1',
version='0.0.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['numbers'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-operator',
version='0.1',
version='0.1.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['operator'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-optparse',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['optparse'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-os.path',
version='0.1.2',
version='0.1.3',
description='os.path 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['os'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-os',
version='0.4.3',
version='0.4.4',
description='os 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
packages=['os'],
install_requires=['micropython-ffilib', 'micropython-errno', 'micropython-stat'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pathlib',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pathlib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pdb',
version='0.0.1',
version='0.0.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pdb'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pickle',
version='0.0.2',
version='0.0.3',
description='Dummy pickle 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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pickle'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pickletools',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pickletools'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pkg_resources',
version='0.1',
version='0.1.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pkg_resources'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pkgutil',
version='0.1',
version='0.1.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pkgutil'],
install_requires=['micropython-pkg_resources'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-platform',
version='0.0.1',
version='0.0.2',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['platform'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-poplib',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['poplib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-posixpath',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['posixpath'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pprint',
version='0.0.2',
version='0.0.3',
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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pprint'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-profile',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['profile'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pty',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pty'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pystone',
version='3.4.2-1',
version='3.4.2-2',
description='CPython pystone module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pystone'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-pystone_lowmem',
version='3.4.2-2',
version='3.4.2-3',
description='CPython pystone_lowmem module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['pystone_lowmem'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-queue',
version='0.0.1',
version='0.0.2',
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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['queue'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-quopri',
version='0.5',
version='0.5.1',
description='CPython quopri module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython/issues/405',
url='https://github.com/micropython/micropython-lib',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['quopri'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-random',
version='0.0.1',
version='0.0.2',
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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['random'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-re-pcre',
version='0.2.1',
version='0.2.2',
description='re-pcre 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['re'],
install_requires=['micropython-ffilib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-reprlib',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['reprlib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-runpy',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['runpy'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-sched',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['sched'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-select',
version='0.1.6',
version='0.1.7',
description='select 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['select'],
install_requires=['micropython-os', 'micropython-ffilib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-selectors',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['selectors'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-shelve',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['shelve'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-shlex',
version='0.0.1',
version='0.0.2',
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',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['shlex'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-shutil',
version='0.0.2',
version='0.0.3',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['shutil'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-signal',
version='0.3.1',
version='0.3.2',
description='signal 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['signal'],
install_requires=['micropython-ffilib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-smtplib',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['smtplib'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-socket',
version='0.5.1',
version='0.5.2',
description='socket 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['socket'])

Wyświetl plik

@ -1,18 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-socketserver',
version='0.0.0',
version='0.0.1',
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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['socketserver'])

Wyświetl plik

@ -1,19 +1,21 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import optimize_upip
setup(name='micropython-sqlite3',
version='0.2.2',
version='0.2.3',
description='sqlite3 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/issues/405',
url='https://github.com/micropython/micropython-lib',
author='Paul Sokolovsky',
author_email='micro-python@googlegroups.com',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['sqlite3'],
install_requires=['micropython-ffilib'])

Some files were not shown because too many files have changed in this diff Show More