diff --git a/upysh/metadata.txt b/upysh/metadata.txt new file mode 100644 index 00000000..26e2a25d --- /dev/null +++ b/upysh/metadata.txt @@ -0,0 +1,5 @@ +srctype = micropython-lib +type = module +version = 0.1 +author = Paul Sokolovsky +long_desc = Minimalistic file shell using native Python syntax. diff --git a/upysh/setup.py b/upysh/setup.py new file mode 100644 index 00000000..c6f4ee7d --- /dev/null +++ b/upysh/setup.py @@ -0,0 +1,18 @@ +import sys +# Remove current dir from sys.path, otherwise setuptools will peek up our +# module instead of system. +sys.path.pop(0) +from setuptools import setup + + +setup(name='micropython-upysh', + version='0.1', + description='upysh module for MicroPython', + long_description='Minimalistic file shell using native Python syntax.', + url='https://github.com/micropython/micropython/issues/405', + author='Paul Sokolovsky', + author_email='micro-python@googlegroups.com', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', + license='MIT', + py_modules=['upysh'])