-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
) |