From 18d0ead369dc44cdb4e2f0e7c566abad6fd8170b Mon Sep 17 00:00:00 2001 From: Tom Stokes Date: Thu, 10 Sep 2015 14:08:24 -0600 Subject: [PATCH] v0.2.0 release --- LICENSE | 4 ++-- README.md | 3 --- setup.py | 4 ++-- spi.py | 2 +- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index 29d90c0..a60f64e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2014 Tom Stokes +Copyright (c) 2015 Tom Stokes Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. diff --git a/README.md b/README.md index de7fcf9..1fbc201 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,3 @@ A pure Python SPI interface using the Linux spidev device received = spi.transfer([0x11, 0x22, 0xFF]) spi.write([0x12, 0x34, 0xAB, 0xCD]) received = spi.read(10) - - - diff --git a/setup.py b/setup.py index 792ef7d..e3ba046 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,11 @@ from distutils.core import setup setup(name="spi", - version="0.1.0", + version="0.2.0", description="SPI Interface", long_description="Pure Python SPI interface using spidev", author="Tom Stokes", author_email="tomstokes@gmail.com", url="http://github.com/tomstokes/python-spi", license="MIT", - py_modules=['spi']) \ No newline at end of file + py_modules=['spi']) diff --git a/spi.py b/spi.py index 7ed7f10..0463d80 100644 --- a/spi.py +++ b/spi.py @@ -1,7 +1,7 @@ """ The MIT License (MIT) -Copyright (c) 2014 Thomas Stokes +Copyright (c) 2015 Thomas Stokes Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal