forked from ahmed9378/pcf8574_io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 811 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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Operating System :: Other OS',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='pcf8574_io',
version='0.0.6',
description=' PCF8574 driver to set pin mode, read and write digital signal 3.3v ',
long_description=open('README.txt').read() + "/n/n" + "https://github.com/ahmed9378/pcf8574_io",
url='https://github.com/ahmed9378/pcf8574_io',
author='Ahmed Omar',
author_email='ahmed.bm78@gmail.com',
license='MIT',
classifiers=classifiers,
keywords='PCF8574',
packages=find_packages(),
install_requires=['smbus2']
)