diff --git a/shutil/setup.py b/shutil/setup.py new file mode 100644 index 00000000..18686f1c --- /dev/null +++ b/shutil/setup.py @@ -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 = 'shutil' + +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]) diff --git a/shutil/shutil.py b/shutil/shutil.py new file mode 100644 index 00000000..e69de29b