Skip to content

Commit dfe4dee

Browse files
committed
all: setup.py: New releases for gzip 4k conversion.
1 parent 65fb370 commit dfe4dee

File tree

139 files changed

+834
-556
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+834
-556
lines changed

abc/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-abc',
9-
version='0.0.0',
10+
version='0.0.1',
1011
description='Dummy abc module for MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['abc'])

argparse/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-argparse',
9-
version='0.3.2',
10+
version='0.3.3',
1011
description='argparse module for MicroPython',
1112
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.",
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='Damien George',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['argparse'])

base64/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-base64',
9-
version='3.3.3-2',
10+
version='3.3.3-3',
1011
description='CPython base64 module ported to MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='CPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='Python',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['base64'],
1921
install_requires=['micropython-struct'])

binascii/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-binascii',
9-
version='2.4.0-3',
10+
version='2.4.0-4',
1011
description='PyPy binascii module ported to MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='PyPy Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['binascii'])

binhex/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-binhex',
9-
version='0.0.1',
10+
version='0.0.2',
1011
description='Dummy binhex module for MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['binhex'])

calendar/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-calendar',
9-
version='0.0.0',
10+
version='0.0.1',
1011
description='Dummy calendar module for MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['calendar'])

cgi/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-cgi',
9-
version='3.3.3-1',
10+
version='3.3.3-2',
1011
description='CPython cgi module ported to MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='CPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='Python',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['cgi'])

cmd/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-cmd',
9-
version='3.4.0-1',
10+
version='3.4.0-2',
1011
description='CPython cmd module ported to MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='CPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='Python',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['cmd'])

collections.defaultdict/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-collections.defaultdict',
9-
version='0.2.1',
10+
version='0.2.2',
1011
description='collections.defaultdict module for MicroPython',
1112
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.",
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='Paul Sokolovsky',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
packages=['collections'])

collections.deque/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-collections.deque',
9-
version='0.1.2',
10+
version='0.1.3',
1011
description='collections.deque module for MicroPython',
1112
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.",
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
packages=['collections'])

collections/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-collections',
9-
version='0.1.1',
10+
version='0.1.2',
1011
description='collections module for MicroPython',
1112
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.",
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
packages=['collections'])

concurrent.futures/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-concurrent.futures',
9-
version='0.0.0',
10+
version='0.0.1',
1011
description='Dummy concurrent.futures module for MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
packages=['concurrent'])

contextlib/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-contextlib',
9-
version='3.4.2-3',
10+
version='3.4.2-4',
1011
description='CPython contextlib module ported to MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='CPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='Python',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['contextlib'],
1921
install_requires=['micropython-ucontextlib', 'micropython-collections'])

cpython-uasyncio/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-cpython-uasyncio',
9-
version='0.2',
10+
version='0.2.1',
1011
description='MicroPython module uasyncio ported to CPython',
1112
long_description='This is MicroPython compatibility module, allowing applications using\nMicroPython-specific features to run on CPython.\n',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='Python',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['uasyncio'])

csv/setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import sys
22
# Remove current dir from sys.path, otherwise setuptools will peek up our
3-
# module instead of system.
3+
# module instead of system's.
44
sys.path.pop(0)
55
from setuptools import setup
6-
6+
sys.path.append("..")
7+
import optimize_upip
78

89
setup(name='micropython-csv',
9-
version='0.0.0',
10+
version='0.0.1',
1011
description='Dummy csv module for MicroPython',
1112
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.',
12-
url='https://github.com/micropython/micropython/issues/405',
13+
url='https://github.com/micropython/micropython-lib',
1314
author='MicroPython Developers',
1415
author_email='[email protected]',
1516
maintainer='MicroPython Developers',
1617
maintainer_email='[email protected]',
1718
license='MIT',
19+
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
1820
py_modules=['csv'])

0 commit comments

Comments
 (0)