kopia lustrzana https://github.com/micropython/micropython-lib
all: setup.py: New releases for gzip 4k conversion.
rodzic
65fb3707ba
commit
dfe4dee62a
10
abc/setup.py
10
abc/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-abc',
|
setup(name='micropython-abc',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy abc module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['abc'])
|
py_modules=['abc'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-argparse',
|
setup(name='micropython-argparse',
|
||||||
version='0.3.2',
|
version='0.3.3',
|
||||||
description='argparse module for MicroPython',
|
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.",
|
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='Damien George',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['argparse'])
|
py_modules=['argparse'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-base64',
|
setup(name='micropython-base64',
|
||||||
version='3.3.3-2',
|
version='3.3.3-3',
|
||||||
description='CPython base64 module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['base64'],
|
py_modules=['base64'],
|
||||||
install_requires=['micropython-struct'])
|
install_requires=['micropython-struct'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-binascii',
|
setup(name='micropython-binascii',
|
||||||
version='2.4.0-3',
|
version='2.4.0-4',
|
||||||
description='PyPy binascii module ported to MicroPython',
|
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.',
|
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='PyPy Developers',
|
||||||
author_email='pypy-dev@python.org',
|
author_email='pypy-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['binascii'])
|
py_modules=['binascii'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-binhex',
|
setup(name='micropython-binhex',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy binhex module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['binhex'])
|
py_modules=['binhex'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-calendar',
|
setup(name='micropython-calendar',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy calendar module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['calendar'])
|
py_modules=['calendar'])
|
||||||
|
|
10
cgi/setup.py
10
cgi/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-cgi',
|
setup(name='micropython-cgi',
|
||||||
version='3.3.3-1',
|
version='3.3.3-2',
|
||||||
description='CPython cgi module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['cgi'])
|
py_modules=['cgi'])
|
||||||
|
|
10
cmd/setup.py
10
cmd/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-cmd',
|
setup(name='micropython-cmd',
|
||||||
version='3.4.0-1',
|
version='3.4.0-2',
|
||||||
description='CPython cmd module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['cmd'])
|
py_modules=['cmd'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-collections.defaultdict',
|
setup(name='micropython-collections.defaultdict',
|
||||||
version='0.2.1',
|
version='0.2.2',
|
||||||
description='collections.defaultdict module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['collections'])
|
packages=['collections'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-collections.deque',
|
setup(name='micropython-collections.deque',
|
||||||
version='0.1.2',
|
version='0.1.3',
|
||||||
description='collections.deque module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['collections'])
|
packages=['collections'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-collections',
|
setup(name='micropython-collections',
|
||||||
version='0.1.1',
|
version='0.1.2',
|
||||||
description='collections module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['collections'])
|
packages=['collections'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-concurrent.futures',
|
setup(name='micropython-concurrent.futures',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy concurrent.futures module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['concurrent'])
|
packages=['concurrent'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-contextlib',
|
setup(name='micropython-contextlib',
|
||||||
version='3.4.2-3',
|
version='3.4.2-4',
|
||||||
description='CPython contextlib module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['contextlib'],
|
py_modules=['contextlib'],
|
||||||
install_requires=['micropython-ucontextlib', 'micropython-collections'])
|
install_requires=['micropython-ucontextlib', 'micropython-collections'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-cpython-uasyncio',
|
setup(name='micropython-cpython-uasyncio',
|
||||||
version='0.2',
|
version='0.2.1',
|
||||||
description='MicroPython module uasyncio ported to CPython',
|
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',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['uasyncio'])
|
py_modules=['uasyncio'])
|
||||||
|
|
10
csv/setup.py
10
csv/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-csv',
|
setup(name='micropython-csv',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy csv module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['csv'])
|
py_modules=['csv'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-curses.ascii',
|
setup(name='micropython-curses.ascii',
|
||||||
version='3.4.2',
|
version='3.4.2-1',
|
||||||
description='CPython curses.ascii module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['curses'])
|
packages=['curses'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-datetime',
|
setup(name='micropython-datetime',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy datetime module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['datetime'])
|
py_modules=['datetime'])
|
||||||
|
|
10
dbm/setup.py
10
dbm/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-dbm',
|
setup(name='micropython-dbm',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy dbm module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['dbm'])
|
py_modules=['dbm'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-decimal',
|
setup(name='micropython-decimal',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy decimal module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['decimal'])
|
py_modules=['decimal'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-difflib',
|
setup(name='micropython-difflib',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy difflib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['difflib'])
|
py_modules=['difflib'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.charset',
|
setup(name='micropython-email.charset',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython email.charset module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
packages=['email'],
|
||||||
install_requires=['micropython-functools', 'micropython-email.encoders', 'micropython-email.errors'])
|
install_requires=['micropython-functools', 'micropython-email.encoders', 'micropython-email.errors'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.encoders',
|
setup(name='micropython-email.encoders',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython email.encoders module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
packages=['email'],
|
||||||
install_requires=['micropython-base64', 'micropython-binascii', 'micropython-quopri', 'micropython-re-pcre', 'micropython-string'])
|
install_requires=['micropython-base64', 'micropython-binascii', 'micropython-quopri', 'micropython-re-pcre', 'micropython-string'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.errors',
|
setup(name='micropython-email.errors',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython email.errors module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'])
|
packages=['email'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.feedparser',
|
setup(name='micropython-email.feedparser',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython email.feedparser module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
packages=['email'],
|
||||||
install_requires=['micropython-re-pcre', 'micropython-email.errors', 'micropython-email.message', 'micropython-email.internal'])
|
install_requires=['micropython-re-pcre', 'micropython-email.errors', 'micropython-email.message', 'micropython-email.internal'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.header',
|
setup(name='micropython-email.header',
|
||||||
version='0.5.1',
|
version='0.5.2',
|
||||||
description='CPython email.header module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
packages=['email'],
|
||||||
install_requires=['micropython-re-pcre', 'micropython-binascii', 'micropython-email.encoders', 'micropython-email.errors', 'micropython-email.charset'])
|
install_requires=['micropython-re-pcre', 'micropython-binascii', 'micropython-email.encoders', 'micropython-email.errors', 'micropython-email.charset'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.internal',
|
setup(name='micropython-email.internal',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython email.internal module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
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'])
|
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'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.message',
|
setup(name='micropython-email.message',
|
||||||
version='0.5.2',
|
version='0.5.3',
|
||||||
description='CPython email.message module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
packages=['email'],
|
||||||
install_requires=['micropython-re-pcre', 'micropython-uu', 'micropython-base64', 'micropython-binascii', 'micropython-email.utils', 'micropython-email.errors', 'micropython-email.charset'])
|
install_requires=['micropython-re-pcre', 'micropython-uu', 'micropython-base64', 'micropython-binascii', 'micropython-email.utils', 'micropython-email.errors', 'micropython-email.charset'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.parser',
|
setup(name='micropython-email.parser',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython email.parser module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
packages=['email'],
|
||||||
install_requires=['micropython-warnings', 'micropython-email.feedparser', 'micropython-email.message', 'micropython-email.internal'])
|
install_requires=['micropython-warnings', 'micropython-email.feedparser', 'micropython-email.message', 'micropython-email.internal'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-email.utils',
|
setup(name='micropython-email.utils',
|
||||||
version='3.3.3-1',
|
version='3.3.3-2',
|
||||||
description='CPython email.utils module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['email'],
|
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'])
|
install_requires=['micropython-os', 'micropython-re-pcre', 'micropython-base64', 'micropython-random', 'micropython-datetime', 'micropython-urllib.parse', 'micropython-warnings', 'micropython-quopri', 'micropython-email.charset'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-errno',
|
setup(name='micropython-errno',
|
||||||
version='0.1.3',
|
version='0.1.4',
|
||||||
description='errno module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['errno'])
|
py_modules=['errno'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-fcntl',
|
setup(name='micropython-fcntl',
|
||||||
version='0.0.3',
|
version='0.0.4',
|
||||||
description='fcntl module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['fcntl'],
|
py_modules=['fcntl'],
|
||||||
install_requires=['micropython-ffilib'])
|
install_requires=['micropython-ffilib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-ffilib',
|
setup(name='micropython-ffilib',
|
||||||
version='0.1.2',
|
version='0.1.3',
|
||||||
description='MicroPython FFI helper module',
|
description='MicroPython FFI helper module',
|
||||||
long_description='MicroPython FFI helper module to easily interface with underlying shared libraries',
|
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='Damien George',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['ffilib'])
|
py_modules=['ffilib'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-fnmatch',
|
setup(name='micropython-fnmatch',
|
||||||
version='0.5.1',
|
version='0.5.2',
|
||||||
description='CPython fnmatch module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['fnmatch'],
|
py_modules=['fnmatch'],
|
||||||
install_requires=['micropython-os', 'micropython-os.path', 'micropython-posixpath', 'micropython-re-pcre'])
|
install_requires=['micropython-os', 'micropython-os.path', 'micropython-posixpath', 'micropython-re-pcre'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-formatter',
|
setup(name='micropython-formatter',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy formatter module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['formatter'])
|
py_modules=['formatter'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-fractions',
|
setup(name='micropython-fractions',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy fractions module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['fractions'])
|
py_modules=['fractions'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-ftplib',
|
setup(name='micropython-ftplib',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy ftplib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['ftplib'])
|
py_modules=['ftplib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-functools',
|
setup(name='micropython-functools',
|
||||||
version='0.0.4',
|
version='0.0.5',
|
||||||
description='functools module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['functools'])
|
py_modules=['functools'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-getopt',
|
setup(name='micropython-getopt',
|
||||||
version='3.3.3',
|
version='3.3.3-1',
|
||||||
description='CPython getopt module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['getopt'],
|
py_modules=['getopt'],
|
||||||
install_requires=['micropython-os'])
|
install_requires=['micropython-os'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-getpass',
|
setup(name='micropython-getpass',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy getpass module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['getpass'])
|
py_modules=['getpass'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-gettext',
|
setup(name='micropython-gettext',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy gettext module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['gettext'])
|
py_modules=['gettext'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-glob',
|
setup(name='micropython-glob',
|
||||||
version='0.5.1',
|
version='0.5.2',
|
||||||
description='CPython glob module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['glob'],
|
py_modules=['glob'],
|
||||||
install_requires=['micropython-os', 'micropython-re-pcre', 'micropython-fnmatch'])
|
install_requires=['micropython-os', 'micropython-re-pcre', 'micropython-fnmatch'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-gzip',
|
setup(name='micropython-gzip',
|
||||||
version='0.1',
|
version='0.1.1',
|
||||||
description='gzip module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['gzip'])
|
py_modules=['gzip'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-hashlib',
|
setup(name='micropython-hashlib',
|
||||||
version='2.4.0-2',
|
version='2.4.0-3',
|
||||||
description='PyPy hashlib module ported to MicroPython',
|
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.',
|
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='PyPy Developers',
|
||||||
author_email='pypy-dev@python.org',
|
author_email='pypy-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['hashlib'])
|
packages=['hashlib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-heapq',
|
setup(name='micropython-heapq',
|
||||||
version='0.9.2',
|
version='0.9.3',
|
||||||
description='CPython heapq module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['heapq'])
|
py_modules=['heapq'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-hmac',
|
setup(name='micropython-hmac',
|
||||||
version='3.4.2-1',
|
version='3.4.2-2',
|
||||||
description='CPython hmac module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['hmac'],
|
py_modules=['hmac'],
|
||||||
install_requires=['micropython-warnings', 'micropython-hashlib'])
|
install_requires=['micropython-warnings', 'micropython-hashlib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-html.entities',
|
setup(name='micropython-html.entities',
|
||||||
version='3.3.3',
|
version='3.3.3-1',
|
||||||
description='CPython html.entities module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['html'])
|
packages=['html'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-html.parser',
|
setup(name='micropython-html.parser',
|
||||||
version='3.3.3-1',
|
version='3.3.3-2',
|
||||||
description='CPython html.parser module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['html'],
|
packages=['html'],
|
||||||
install_requires=['micropython-_markupbase', 'micropython-warnings', 'micropython-html.entities', 'micropython-re-pcre'])
|
install_requires=['micropython-_markupbase', 'micropython-warnings', 'micropython-html.entities', 'micropython-re-pcre'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-html',
|
setup(name='micropython-html',
|
||||||
version='3.3.3-1',
|
version='3.3.3-2',
|
||||||
description='CPython html module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['html'],
|
packages=['html'],
|
||||||
install_requires=['micropython-string'])
|
install_requires=['micropython-string'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-http.client',
|
setup(name='micropython-http.client',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython http.client module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['http'],
|
packages=['http'],
|
||||||
install_requires=['micropython-email.parser', 'micropython-email.message', 'micropython-socket', 'micropython-collections', 'micropython-urllib.parse', 'micropython-warnings'])
|
install_requires=['micropython-email.parser', 'micropython-email.message', 'micropython-socket', 'micropython-collections', 'micropython-urllib.parse', 'micropython-warnings'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-imaplib',
|
setup(name='micropython-imaplib',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy imaplib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['imaplib'])
|
py_modules=['imaplib'])
|
||||||
|
|
10
imp/setup.py
10
imp/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-imp',
|
setup(name='micropython-imp',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy imp module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['imp'])
|
py_modules=['imp'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-inspect',
|
setup(name='micropython-inspect',
|
||||||
version='0.1.1',
|
version='0.1.2',
|
||||||
description='inspect module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['inspect'])
|
py_modules=['inspect'])
|
||||||
|
|
10
io/setup.py
10
io/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-io',
|
setup(name='micropython-io',
|
||||||
version='0.0.2',
|
version='0.0.3',
|
||||||
description='Dummy io module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['io'])
|
py_modules=['io'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-ipaddress',
|
setup(name='micropython-ipaddress',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy ipaddress module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['ipaddress'])
|
py_modules=['ipaddress'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-itertools',
|
setup(name='micropython-itertools',
|
||||||
version='0.2.1',
|
version='0.2.2',
|
||||||
description='itertools module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['itertools'])
|
py_modules=['itertools'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-linecache',
|
setup(name='micropython-linecache',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy linecache module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['linecache'])
|
py_modules=['linecache'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-locale',
|
setup(name='micropython-locale',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy locale module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['locale'])
|
py_modules=['locale'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-logging',
|
setup(name='micropython-logging',
|
||||||
version='0.1.2',
|
version='0.1.3',
|
||||||
description='logging module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['logging'])
|
py_modules=['logging'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-machine',
|
setup(name='micropython-machine',
|
||||||
version='0.1',
|
version='0.1.1',
|
||||||
description='machine module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['machine'],
|
packages=['machine'],
|
||||||
install_requires=['micropython-ffilib', 'micropython-os', 'micropython-signal'])
|
install_requires=['micropython-ffilib', 'micropython-os', 'micropython-signal'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-mailbox',
|
setup(name='micropython-mailbox',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy mailbox module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['mailbox'])
|
py_modules=['mailbox'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-mailcap',
|
setup(name='micropython-mailcap',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy mailcap module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['mailcap'])
|
py_modules=['mailcap'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-mimetypes',
|
setup(name='micropython-mimetypes',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy mimetypes module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['mimetypes'])
|
py_modules=['mimetypes'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-multiprocessing',
|
setup(name='micropython-multiprocessing',
|
||||||
version='0.1',
|
version='0.1.1',
|
||||||
description='multiprocessing module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['multiprocessing'],
|
py_modules=['multiprocessing'],
|
||||||
install_requires=['micropython-os', 'micropython-select', 'micropython-pickle'])
|
install_requires=['micropython-os', 'micropython-select', 'micropython-pickle'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-nntplib',
|
setup(name='micropython-nntplib',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy nntplib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['nntplib'])
|
py_modules=['nntplib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-numbers',
|
setup(name='micropython-numbers',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy numbers module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['numbers'])
|
py_modules=['numbers'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-operator',
|
setup(name='micropython-operator',
|
||||||
version='0.1',
|
version='0.1.1',
|
||||||
description='operator module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['operator'])
|
py_modules=['operator'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-optparse',
|
setup(name='micropython-optparse',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy optparse module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['optparse'])
|
py_modules=['optparse'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-os.path',
|
setup(name='micropython-os.path',
|
||||||
version='0.1.2',
|
version='0.1.3',
|
||||||
description='os.path module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['os'])
|
packages=['os'])
|
||||||
|
|
10
os/setup.py
10
os/setup.py
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-os',
|
setup(name='micropython-os',
|
||||||
version='0.4.3',
|
version='0.4.4',
|
||||||
description='os module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
packages=['os'],
|
packages=['os'],
|
||||||
install_requires=['micropython-ffilib', 'micropython-errno', 'micropython-stat'])
|
install_requires=['micropython-ffilib', 'micropython-errno', 'micropython-stat'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pathlib',
|
setup(name='micropython-pathlib',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy pathlib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pathlib'])
|
py_modules=['pathlib'])
|
||||||
|
|
10
pdb/setup.py
10
pdb/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pdb',
|
setup(name='micropython-pdb',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy pdb module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pdb'])
|
py_modules=['pdb'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pickle',
|
setup(name='micropython-pickle',
|
||||||
version='0.0.2',
|
version='0.0.3',
|
||||||
description='Dummy pickle module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pickle'])
|
py_modules=['pickle'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pickletools',
|
setup(name='micropython-pickletools',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy pickletools module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pickletools'])
|
py_modules=['pickletools'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pkg_resources',
|
setup(name='micropython-pkg_resources',
|
||||||
version='0.1',
|
version='0.1.1',
|
||||||
description='pkg_resources module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pkg_resources'])
|
py_modules=['pkg_resources'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pkgutil',
|
setup(name='micropython-pkgutil',
|
||||||
version='0.1',
|
version='0.1.1',
|
||||||
description='pkgutil module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pkgutil'],
|
py_modules=['pkgutil'],
|
||||||
install_requires=['micropython-pkg_resources'])
|
install_requires=['micropython-pkg_resources'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-platform',
|
setup(name='micropython-platform',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy platform module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['platform'])
|
py_modules=['platform'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-poplib',
|
setup(name='micropython-poplib',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy poplib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['poplib'])
|
py_modules=['poplib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-posixpath',
|
setup(name='micropython-posixpath',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy posixpath module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['posixpath'])
|
py_modules=['posixpath'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pprint',
|
setup(name='micropython-pprint',
|
||||||
version='0.0.2',
|
version='0.0.3',
|
||||||
description='Dummy pprint module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pprint'])
|
py_modules=['pprint'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-profile',
|
setup(name='micropython-profile',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy profile module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['profile'])
|
py_modules=['profile'])
|
||||||
|
|
10
pty/setup.py
10
pty/setup.py
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pty',
|
setup(name='micropython-pty',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy pty module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pty'])
|
py_modules=['pty'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pystone',
|
setup(name='micropython-pystone',
|
||||||
version='3.4.2-1',
|
version='3.4.2-2',
|
||||||
description='CPython pystone module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pystone'])
|
py_modules=['pystone'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-pystone_lowmem',
|
setup(name='micropython-pystone_lowmem',
|
||||||
version='3.4.2-2',
|
version='3.4.2-3',
|
||||||
description='CPython pystone_lowmem module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['pystone_lowmem'])
|
py_modules=['pystone_lowmem'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-queue',
|
setup(name='micropython-queue',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy queue module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['queue'])
|
py_modules=['queue'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-quopri',
|
setup(name='micropython-quopri',
|
||||||
version='0.5',
|
version='0.5.1',
|
||||||
description='CPython quopri module ported to MicroPython',
|
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.',
|
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='CPython Developers',
|
||||||
author_email='python-dev@python.org',
|
author_email='python-dev@python.org',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='Python',
|
license='Python',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['quopri'])
|
py_modules=['quopri'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-random',
|
setup(name='micropython-random',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy random module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['random'])
|
py_modules=['random'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-re-pcre',
|
setup(name='micropython-re-pcre',
|
||||||
version='0.2.1',
|
version='0.2.2',
|
||||||
description='re-pcre module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['re'],
|
py_modules=['re'],
|
||||||
install_requires=['micropython-ffilib'])
|
install_requires=['micropython-ffilib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-reprlib',
|
setup(name='micropython-reprlib',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy reprlib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['reprlib'])
|
py_modules=['reprlib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-runpy',
|
setup(name='micropython-runpy',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy runpy module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['runpy'])
|
py_modules=['runpy'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-sched',
|
setup(name='micropython-sched',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy sched module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['sched'])
|
py_modules=['sched'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-select',
|
setup(name='micropython-select',
|
||||||
version='0.1.6',
|
version='0.1.7',
|
||||||
description='select module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['select'],
|
py_modules=['select'],
|
||||||
install_requires=['micropython-os', 'micropython-ffilib'])
|
install_requires=['micropython-os', 'micropython-ffilib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-selectors',
|
setup(name='micropython-selectors',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy selectors module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['selectors'])
|
py_modules=['selectors'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-shelve',
|
setup(name='micropython-shelve',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy shelve module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['shelve'])
|
py_modules=['shelve'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-shlex',
|
setup(name='micropython-shlex',
|
||||||
version='0.0.1',
|
version='0.0.2',
|
||||||
description='Dummy shlex module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['shlex'])
|
py_modules=['shlex'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-shutil',
|
setup(name='micropython-shutil',
|
||||||
version='0.0.2',
|
version='0.0.3',
|
||||||
description='shutil module for MicroPython',
|
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.",
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['shutil'])
|
py_modules=['shutil'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-signal',
|
setup(name='micropython-signal',
|
||||||
version='0.3.1',
|
version='0.3.2',
|
||||||
description='signal module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['signal'],
|
py_modules=['signal'],
|
||||||
install_requires=['micropython-ffilib'])
|
install_requires=['micropython-ffilib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-smtplib',
|
setup(name='micropython-smtplib',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy smtplib module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['smtplib'])
|
py_modules=['smtplib'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-socket',
|
setup(name='micropython-socket',
|
||||||
version='0.5.1',
|
version='0.5.2',
|
||||||
description='socket module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['socket'])
|
py_modules=['socket'])
|
||||||
|
|
|
@ -1,18 +1,20 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-socketserver',
|
setup(name='micropython-socketserver',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='Dummy socketserver module for MicroPython',
|
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.',
|
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='MicroPython Developers',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['socketserver'])
|
py_modules=['socketserver'])
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
import sys
|
import sys
|
||||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
# 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)
|
sys.path.pop(0)
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
sys.path.append("..")
|
||||||
|
import optimize_upip
|
||||||
|
|
||||||
setup(name='micropython-sqlite3',
|
setup(name='micropython-sqlite3',
|
||||||
version='0.2.2',
|
version='0.2.3',
|
||||||
description='sqlite3 module for MicroPython',
|
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.",
|
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='Paul Sokolovsky',
|
||||||
author_email='micro-python@googlegroups.com',
|
author_email='micro-python@googlegroups.com',
|
||||||
maintainer='MicroPython Developers',
|
maintainer='MicroPython Developers',
|
||||||
maintainer_email='micro-python@googlegroups.com',
|
maintainer_email='micro-python@googlegroups.com',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
|
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||||
py_modules=['sqlite3'],
|
py_modules=['sqlite3'],
|
||||||
install_requires=['micropython-ffilib'])
|
install_requires=['micropython-ffilib'])
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Ładowanie…
Reference in New Issue