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 1
1
dist_name = libc
2
2
srctype = micropython-lib
3
3
type = module
4
- version = 0.3
4
+ version = 0.3.1
5
5
author = Paul Sokolovsky
6
6
desc = MicroPython FFI helper module (deprecated)
7
7
long_desc = MicroPython FFI helper module (deprecated, replaced by micropython-ffilib).
Original file line number Diff line number Diff line change 1
1
import sys
2
2
# Remove current dir from sys.path, otherwise setuptools will peek up our
3
- # module instead of system.
3
+ # module instead of system's .
4
4
sys .path .pop (0 )
5
5
from setuptools import setup
6
-
6
+ sys .path .append (".." )
7
+ import optimize_upip
7
8
8
9
setup (name = 'micropython-libc' ,
9
- version = '0.3' ,
10
+ version = '0.3.1 ' ,
10
11
description = 'MicroPython FFI helper module (deprecated)' ,
11
12
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 ' ,
13
14
author = 'Paul Sokolovsky' ,
14
15
author_email = 'micro-python@googlegroups.com' ,
15
16
maintainer = 'MicroPython Developers' ,
16
17
maintainer_email = 'micro-python@googlegroups.com' ,
17
18
license = 'MIT' ,
19
+ cmdclass = {'optimize_upip' : optimize_upip .OptimizeUpip },
18
20
py_modules = ['_libc' ])
You can’t perform that action at this time.
0 commit comments