Skip to content

Commit

Permalink
upip preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
mcauser committed Jun 24, 2017
1 parent df330b2 commit cf4535c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system.
sys.path.pop(0)
from setuptools import setup

setup(
name='micropython-pcd8544',
py_modules=['pcd8544'],
version='1.0.0',
description='MicroPython library for the PCD8544 LCD, used by Nokia 5110 displays.',
long_description='This library lets you communicate with LCDs using the Philips PCD8544 84x48 monochrome LCD driver, for example the Nokia 5110 display.',
keywords='pcd8544 monochrome lcd nokia micropython',
url='https://github.com/mcauser/micropython-pcd8544',
author='Mike Causer',
author_email='mcauser@gmail.com',
maintainer='Mike Causer',
maintainer_email='mcauser@gmail.com',
license='MIT',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: Implementation :: MicroPython',
'License :: OSI Approved :: MIT License',
],
)

0 comments on commit cf4535c

Please # to comment.