generated from brainelectronics/micropython-package-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
40 lines (35 loc) · 1.33 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
from setuptools import setup
from pathlib import Path
import sdist_upip
here = Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
# load elements of version.py
exec(open(here / 'lcd_i2c' / 'version.py').read())
setup(
name='micropython-i2c-lcd',
version=__version__,
description="MicroPython package to control HD44780 LCD displays 1602 and 2004",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/brainelectronics/micropython-i2c-lcd',
author='brainelectronics',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: Implementation :: MicroPython',
],
keywords='micropython, HD44780, I2C, display, LCD1602, LCD2004, PCF8574',
project_urls={
'Bug Reports': 'https://github.com/brainelectronics/micropython-i2c-lcd/issues',
'Source': 'https://github.com/brainelectronics/micropython-i2c-lcd',
},
license='MIT',
cmdclass={'sdist': sdist_upip.sdist},
packages=['lcd_i2c'],
install_requires=[]
)