Skip to content

Commit

Permalink
simple changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed9378 committed Oct 27, 2020
1 parent e0c9f9e commit 7eee326
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ Change Log

0.0.1 (27/10/2020)
------------------
- First Release
- First Release

0.0.2 (27/10/2020)
------------------
- Second Release
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
from setuptools import setup, find_packages

classifiers = [
'Development Status :: 1 - Planning',
'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='',
version='0.0.2',
description='setup pin mode and read, write to PCF8574 pins',
long_description=open('README.txt').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
url='',
author='Ahmed Omar',
author_email='ahmed.bm78@gmail.com',
license='MIT',
classifiers=classifiers,
keywords='PCF8574',
packages=find_packages(),
install_requires=['']
install_requires=['smbus2']
)

0 comments on commit 7eee326

Please sign in to comment.