Skip to content

Commit cf4535c

Browse files
committed
upip preparation
1 parent df330b2 commit cf4535c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import sys
2+
# Remove current dir from sys.path, otherwise setuptools will peek up our
3+
# module instead of system.
4+
sys.path.pop(0)
5+
from setuptools import setup
6+
7+
setup(
8+
name='micropython-pcd8544',
9+
py_modules=['pcd8544'],
10+
version='1.0.0',
11+
description='MicroPython library for the PCD8544 LCD, used by Nokia 5110 displays.',
12+
long_description='This library lets you communicate with LCDs using the Philips PCD8544 84x48 monochrome LCD driver, for example the Nokia 5110 display.',
13+
keywords='pcd8544 monochrome lcd nokia micropython',
14+
url='https://github.com/mcauser/micropython-pcd8544',
15+
author='Mike Causer',
16+
author_email='[email protected]',
17+
maintainer='Mike Causer',
18+
maintainer_email='[email protected]',
19+
license='MIT',
20+
classifiers = [
21+
'Development Status :: 5 - Production/Stable',
22+
'Programming Language :: Python :: Implementation :: MicroPython',
23+
'License :: OSI Approved :: MIT License',
24+
],
25+
)

0 commit comments

Comments
 (0)