-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for wrong install_requires in setup.py (issue #1)
- Loading branch information
1 parent
bd9fb94
commit 98432a2
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Just the version of the package | ||
|
||
__version__ = '0.1.1' | ||
__version__ = '0.1.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,18 @@ | |
|
||
# Long description to be published in PyPi | ||
LONG_DESCRIPTION = """ | ||
**CO2meter** is a Python library for USB CO2 meter. | ||
**CO2meter** is a Python library for the USB CO2 meter. | ||
""" | ||
|
||
setup(name='CO2meter', | ||
version=__version__, | ||
description='Python interface to the USB CO2 monitor', | ||
long_description=LONG_DESCRIPTION, | ||
url=GITHUB_URL, | ||
download_url=GITHUB_URL + '/archive/v%s.zip' % (__version__), | ||
author='Vladimir Filimonov', | ||
author_email='[email protected]', | ||
license='MIT License', | ||
packages=['co2meter'], | ||
install_requires=['hid'] | ||
install_requires=['hidapi'] | ||
) |