diff --git a/os.path/os/path.py b/os.path/os/path.py new file mode 100644 index 00000000..17fd50ae --- /dev/null +++ b/os.path/os/path.py @@ -0,0 +1,2 @@ +def normcase(s): + return s diff --git a/os.path/setup.py b/os.path/setup.py new file mode 100644 index 00000000..cc2c2471 --- /dev/null +++ b/os.path/setup.py @@ -0,0 +1,10 @@ +from distutils.core import setup + +setup(name='micropython-os.path', + version='0.0.1', + description='os.path module for MicroPython', + url='https://github.com/micropython/micropython/issues/405', + author='MicroPython Developers', + author_email='micro-python@googlegroups.com', + license='MIT', + packages=['os'])