pull/2/head
Stefan Lehmann 2018-11-18 18:08:32 +01:00
rodzic 848103473f
commit 60d42324e3
1 zmienionych plików z 20 dodań i 0 usunięć

20
setup.py 100644
Wyświetl plik

@ -0,0 +1,20 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
import sdist_upip
setup(name='micropython-ssd1306',
version='0.1',
description='ssd1306 module for MicroPython',
long_description="",
url='https://github.com/stlehmann/micropython-ssd1306',
author='Stefan Lehmann',
author_email='stlm@posteo.de',
maintainer='Stefan Lehmann',
maintainer_email='stlm@posteo.de',
license='MIT',
cmdclass={'sdist': sdist_upip.sdist},
py_modules=[''])