kopia lustrzana https://github.com/micropython/micropython-lib
upip: Release 1.0.
rodzic
7b3a2c0a42
commit
7bc041e620
|
@ -1,7 +1,7 @@
|
|||
srctype = micropython-lib
|
||||
type = module
|
||||
version = 0.8
|
||||
version = 1.0
|
||||
author = Paul Sokolovsky
|
||||
extra_modules = upip_errno, upip_gzip, upip_utarfile
|
||||
extra_modules = 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.
|
||||
long_desc = Simple self-hosted package manager for MicroPython (requires usocket, ussl, uzlib, uctypes builtin modules). Compatible only with packages without custom setup.py code.
|
||||
|
|
|
@ -6,13 +6,13 @@ from setuptools import setup
|
|||
|
||||
|
||||
setup(name='micropython-upip',
|
||||
version='0.8',
|
||||
version='1.0',
|
||||
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.',
|
||||
long_description='Simple self-hosted package manager for MicroPython (requires usocket, ussl, uzlib, uctypes builtin modules). Compatible only with packages without custom setup.py code.',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
author='Paul Sokolovsky',
|
||||
author_email='micro-python@googlegroups.com',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='MIT',
|
||||
py_modules=['upip', 'upip_errno', 'upip_gzip', 'upip_utarfile'])
|
||||
py_modules=['upip', 'upip_utarfile'])
|
||||
|
|
Ładowanie…
Reference in New Issue