-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
25 lines (24 loc) · 973 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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.1.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='[email protected]',
maintainer='Mike Causer',
maintainer_email='[email protected]',
license='MIT',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: Implementation :: MicroPython',
'License :: OSI Approved :: MIT License',
],
)