From 5cd6cf494c67025bde8aca90a47e3d4725904b73 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 6 Apr 2014 23:02:16 +0300 Subject: [PATCH] copy: Add setup metadata. --- copy/setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 copy/setup.py diff --git a/copy/setup.py b/copy/setup.py new file mode 100644 index 00000000..36983194 --- /dev/null +++ b/copy/setup.py @@ -0,0 +1,11 @@ +from distutils.core import setup + +setup(name='micropython-copy', + version='0.0.1', + description='CPython copy module ported to MicroPython', + url='https://github.com/micropython/micropython/issues/405', + author='CPython Developers', + maintainer='MicroPython Developers', + maintainer_email='micro-python@googlegroups.com', + license='Python', + py_modules=['copy'])