Skip to content

Commit

Permalink
Fix for wrong install_requires in setup.py (issue #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
vfilimonov committed Jan 23, 2017
1 parent bd9fb94 commit 98432a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion co2meter/_version.py
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'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
)

0 comments on commit 98432a2

Please sign in to comment.