random: Add module placeholder.

pull/118/head
Paul Sokolovsky 2014-05-01 02:42:43 +03:00
rodzic fec581f862
commit c0ab28571b
2 zmienionych plików z 14 dodań i 0 usunięć

0
random/random.py 100644
Wyświetl plik

14
random/setup.py 100644
Wyświetl plik

@ -0,0 +1,14 @@
import sys
# Remove current dir from sys.path, otherwise distutils will peek up our
# module instead of system.
sys.path.pop(0)
from setuptools import setup
setup(name='micropython-random',
version='0.0.0',
description='dummy random module to MicroPython',
url='https://github.com/micropython/micropython/issues/405',
author='MicroPython Developers',
author_email='micro-python@googlegroups.com',
license='MIT',
py_modules=['random'])