pprint: Add dummy module.

pull/118/head
Paul Sokolovsky 2014-05-09 00:16:00 +03:00
rodzic d2b8622804
commit 1b8812ed65
2 zmienionych plików z 18 dodań i 0 usunięć

0
pprint/pprint.py 100644
Wyświetl plik

18
pprint/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 = 'pprint'
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])