Skip to content

Commit

Permalink
Add setup.py to allow pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
alcalyn committed Jul 4, 2017
1 parent b56dadd commit 1d0a0d7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions setup.py
@@ -0,0 +1,19 @@
from setuptools import setup

def readme():
with open('README.md') as f:
return f.read()

setup(name='shiftr_74HC595',
version='1.0',
description='Dynamic class to manage Shift Register 74HC595 in Raspberry Pi using Python',
long_description=readme(),
url='https://github.com/marsminds/shiftr_74HC595',
author='marsminds',
author_email='hello@marsminds.com',
license='GPL-2.0',
packages=['shiftr_74HC595'],
install_requires=[
'RPi.GPIO',
],
zip_safe=False)
File renamed without changes.
File renamed without changes.

0 comments on commit 1d0a0d7

Please sign in to comment.