micropython-ssd1306/setup.py

21 wiersze
636 B
Python

2018-11-18 17:08:32 +00:00
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',
2020-12-16 15:43:58 +00:00
version='0.3',
2018-11-18 17:08:32 +00:00
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},
2018-11-18 17:42:47 +00:00
py_modules=['ssd1306'])