From 87724fadda22724462eb1a1cf1750e175a800dc8 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 9 May 2014 23:24:02 +0300 Subject: [PATCH] os: Convert to package, require to support os.path. --- os/{os.py => os/__init__.py} | 0 os/setup.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename os/{os.py => os/__init__.py} (100%) diff --git a/os/os.py b/os/os/__init__.py similarity index 100% rename from os/os.py rename to os/os/__init__.py diff --git a/os/setup.py b/os/setup.py index 1b79084b..c04d3914 100644 --- a/os/setup.py +++ b/os/setup.py @@ -1,10 +1,10 @@ from distutils.core import setup setup(name='micropython-os', - version='0.0.4', + version='0.0.5', description='os module for MicroPython', url='https://github.com/micropython/micropython/issues/405', author='MicroPython Developers', author_email='micro-python@googlegroups.com', license='MIT', - py_modules=['os']) + packages=['os'])