Skip to content

Commit

Permalink
Merge pull request #19 from kb1lqc/issue18
Browse files Browse the repository at this point in the history
Fix setup.py requirements
  • Loading branch information
kb1lqc authored Mar 2, 2018
2 parents 072bb16 + 4bf530e commit e496a43
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion faradayio_cli/faradayio_cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""faradayio-cli.faradayio-cli: provides entry point main()."""

__version__ = "0.0.1"
__version__ = "0.0.1a"

import argparse
import serial
Expand Down
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@
setup(
name='faradayio-cli',
packages=['faradayio_cli'],
install_requires=[
'attrs==17.4.0',
'faradayio==0.0.2',
'flake8==3.5.0',
'mccabe==0.6.1',
'pluggy==0.6.0',
'py==1.5.2',
'pycodestyle==2.3.1',
'pyflakes==1.6.0',
'pyserial==3.4',
'pytest==3.4.1',
'python-pytun==2.2.1',
'six==1.11.0',
'sliplib==0.3.0',
'sphinx-rtd-theme==0.2.4',
'timeout-decorator==0.4.0',
],
entry_points={
"console_scripts": ['faradayio-cli = faradayio_cli.faradayio_cli:main']
},
Expand Down

0 comments on commit e496a43

Please sign in to comment.