kopia lustrzana https://github.com/micropython/micropython-lib
dummy modules: Switch to new metadata.
rodzic
326cd10530
commit
2a2fdd7f43
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'base64'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-base64',
|
||||
version='0.0.1',
|
||||
description='Dummy base64 module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['base64'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'binascii'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-binascii',
|
||||
version='0.0.1',
|
||||
description='Dummy binascii module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['binascii'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'binhex'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-binhex',
|
||||
version='0.0.1',
|
||||
description='Dummy binhex module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['binhex'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'datetime'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-datetime',
|
||||
version='0.0.1',
|
||||
description='Dummy datetime module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['datetime'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'glob'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-glob',
|
||||
version='0.0.1',
|
||||
description='Dummy glob module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['glob'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'gzip'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-gzip',
|
||||
version='0.0.1',
|
||||
description='Dummy gzip module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['gzip'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'hashlib'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-hashlib',
|
||||
version='0.0.1',
|
||||
description='Dummy hashlib module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['hashlib'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'pprint'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-pprint',
|
||||
version='0.0.1',
|
||||
description='Dummy pprint module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['pprint'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'queue'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-queue',
|
||||
version='0.0.1',
|
||||
description='Dummy queue module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['queue'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,14 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(name='micropython-random',
|
||||
version='0.0.0',
|
||||
description='dummy random module to MicroPython',
|
||||
version='0.0.1',
|
||||
description='Dummy random module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=['random'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'shlex'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-shlex',
|
||||
version='0.0.1',
|
||||
description='Dummy shlex module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['shlex'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'shutil'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-shutil',
|
||||
version='0.0.1',
|
||||
description='Dummy shutil module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['shutil'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'stat'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-stat',
|
||||
version='0.0.1',
|
||||
description='Dummy stat module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['stat'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'subprocess'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-subprocess',
|
||||
version='0.0.1',
|
||||
description='Dummy subprocess module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['subprocess'])
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
srctype=dummy
|
||||
type=module
|
||||
version=0.0.1
|
|
@ -1,18 +1,18 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# module instead of system one.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system.
|
||||
sys.path.pop(0)
|
||||
sys.path.insert(0, '..')
|
||||
from setuptools import setup
|
||||
import metadata
|
||||
|
||||
NAME = 'tempfile'
|
||||
|
||||
setup(name='micropython-' + NAME,
|
||||
version='0.0.0',
|
||||
description=metadata.desc_dummy(NAME),
|
||||
url=metadata.url,
|
||||
author=metadata.author_upy_devels,
|
||||
author_email=metadata.author_upy_devels_email,
|
||||
setup(name='micropython-tempfile',
|
||||
version='0.0.1',
|
||||
description='Dummy tempfile module for MicroPython',
|
||||
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='MicroPython Developers',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=[NAME])
|
||||
py_modules=['tempfile'])
|
||||
|
|
Ładowanie…
Reference in New Issue