kopia lustrzana https://github.com/micropython/micropython-lib
binhex: Add dummy module.
rodzic
5b23b9014d
commit
5c1c155660
|
@ -0,0 +1,18 @@
|
||||||
|
import sys
|
||||||
|
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||||
|
# module instead of system one.
|
||||||
|
sys.path.pop(0)
|
||||||
|
sys.path.insert(0, '..')
|
||||||
|
from setuptools import setup
|
||||||
|
import metadata
|
||||||
|
|
||||||
|
NAME = 'binhex'
|
||||||
|
|
||||||
|
setup(name='micropython-' + NAME,
|
||||||
|
version='0.0.0',
|
||||||
|
description=metadata.desc_dummy(NAME),
|
||||||
|
url=metadata.url,
|
||||||
|
author=metadata.author_upy_devels,
|
||||||
|
author_email=metadata.author_upy_devels_email,
|
||||||
|
license='MIT',
|
||||||
|
py_modules=[NAME])
|
Ładowanie…
Reference in New Issue