Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix setup.py by removing DESCRIPTION.rst file access. #7

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Qwiic I2C Driver
==========================

This package provdes support cross platform I2C support for the qwiic python packages
This package provides cross platform I2C support for the qwiic python packages
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@

here = path.abspath(path.dirname(__file__))

# get the log description from the decription file
with io.open(path.join(here, "DESCRIPTION.rst"), encoding="utf-8") as f:
long_description = f.read()

setup_requires = []
setup_requires.append("smbus2")

Expand All @@ -58,7 +54,7 @@
version='0.9.11',

description='SparkFun Electronics qwiic I2C library',
long_description=long_description,
long_description='This package provides cross platform I2C support for the qwiic python packages',

# The project's main homepage.
url='http://www.sparkfun.com/qwiic',
Expand Down