upip: Release 0.5.7.

pull/43/head
Paul Sokolovsky 2015-08-30 03:16:24 +03:00
rodzic 5633db3aec
commit 316d960880
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
srctype = micropython-lib
type = module
version = 0.5.5
version = 0.5.7
author = Paul Sokolovsky
extra_modules = upip__libc, upip_errno, upip_gzip, upip_os, upip_os_path, upip_stat, upip_utarfile
extra_modules = upip_ffilib, upip_errno, upip_gzip, upip_os, upip_os_path, upip_stat, upip_utarfile
desc = Simple package manager for MicroPython.
long_desc = Simple package manager for MicroPython, targetting to be self-hosted (but not yet there). Compatible only with packages without custom setup.py code.

Wyświetl plik

@ -6,7 +6,7 @@ from setuptools import setup
setup(name='micropython-upip',
version='0.5.5',
version='0.5.7',
description='Simple package manager for MicroPython.',
long_description='Simple package manager for MicroPython, targetting to be self-hosted (but not yet there). Compatible only with packages without custom setup.py code.',
url='https://github.com/micropython/micropython/issues/405',
@ -15,4 +15,4 @@ setup(name='micropython-upip',
maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com',
license='MIT',
py_modules=['upip', 'upip__libc', 'upip_errno', 'upip_gzip', 'upip_os', 'upip_os_path', 'upip_stat', 'upip_utarfile'])
py_modules=['upip', 'upip_ffilib', 'upip_errno', 'upip_gzip', 'upip_os', 'upip_os_path', 'upip_stat', 'upip_utarfile'])