Skip to content

Commit

Permalink
Fix typo in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
methylDragon committed Jul 9, 2019
1 parent 13517c0 commit abc2577
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
HISTORY = history_file.read()

setup_args = {'name': "cortex2",
'version': "1.0.0.post2",
'version': "1.0.0.post3",
'description': "Comprehensive threaded, asynchronous Python client for the Emotiv EEG Cortex 2 API",
'long_description_content_type': "text/markdown",
'long_description': README + '\n\n' + HISTORY,
Expand All @@ -17,8 +17,7 @@
'url': "https://github.com/methylDragon/emotiv-cortex2-python-client",
'download_url': "https://pypi.org/project/cortex2/"}

install_requires = ['websockets>=7.0',
]
install_requires = ['websockets>=7.0']

if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)

0 comments on commit abc2577

Please sign in to comment.