File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11dist_name = libc
22srctype = micropython-lib
33type = module
4- version = 0.3
4+ version = 0.3.1
55author = Paul Sokolovsky
66desc = MicroPython FFI helper module (deprecated)
77long_desc = MicroPython FFI helper module (deprecated, replaced by micropython-ffilib).
Original file line number Diff line number Diff line change 11import 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 .
44sys .path .pop (0 )
55from setuptools import setup
6-
6+ sys .path .append (".." )
7+ import optimize_upip
78
89setup (name = 'micropython-libc' ,
9- version = '0.3' ,
10+ version = '0.3.1 ' ,
1011 description = 'MicroPython FFI helper module (deprecated)' ,
1112 long_description = 'MicroPython FFI helper module (deprecated, replaced by micropython-ffilib).' ,
12- url = 'https://github.com/micropython/micropython/issues/405 ' ,
13+ url = 'https://github.com/micropython/micropython-lib ' ,
1314 author = 'Paul Sokolovsky' ,
1415 author_email = 'micro-python@googlegroups.com' ,
1516 maintainer = 'MicroPython Developers' ,
1617 maintainer_email = 'micro-python@googlegroups.com' ,
1718 license = 'MIT' ,
19+ cmdclass = {'optimize_upip' : optimize_upip .OptimizeUpip },
1820 py_modules = ['_libc' ])
You can’t perform that action at this time.
0 commit comments