datetime: Release 3.3.3-1.

pull/234/merge
Paul Sokolovsky 2017-12-21 18:54:16 +02:00
rodzic 107c17591a
commit c59c5c6ef8
2 zmienionych plików z 9 dodań i 9 usunięć

Wyświetl plik

@ -1,3 +1,3 @@
srctype=dummy
srctype = cpython
type = module
version = 0.0.2
version = 3.3.3-1

Wyświetl plik

@ -7,14 +7,14 @@ sys.path.append("..")
import optimize_upip
setup(name='micropython-datetime',
version='0.0.2',
description='Dummy datetime module for MicroPython',
long_description='This is a dummy implementation of a module for MicroPython standard library.\nIt contains zero or very little functionality, and primarily intended to\navoid import errors (using idea that even if an application imports a\nmodule, it may be not using it onevery code path, so may work at least\npartially). It is expected that more complete implementation of the module\nwill be provided later. Please help with the development if you are\ninterested in this module.',
version='3.3.3-1',
description='CPython datetime module ported to MicroPython',
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
url='https://github.com/micropython/micropython-lib',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
license='Python',
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
py_modules=['datetime'])