gzip: Add dummy module.

pull/118/head
Paul Sokolovsky 2014-05-09 04:59:28 +03:00
rodzic 3ad1f4e2d0
commit 7e9acd8211
2 zmienionych plików z 18 dodań i 0 usunięć

0
gzip/gzip.py 100644
Wyświetl plik

18
gzip/setup.py 100644
Wyświetl plik

@ -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 = 'gzip'
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])