Skip to content

Commit

Permalink
textfsm executable (#61)
Browse files Browse the repository at this point in the history
When installing textfsm, make textfsm executable which points to `textfsm/parser.py`
  • Loading branch information
sumkincpp authored and harro committed Sep 4, 2019
1 parent ac90235 commit da837ec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'],
packages=['textfsm'],
entry_points={
'console_scripts': [
'textfsm=textfsm.parser:main'
]
},
include_package_data=True,
package_data={'textfsm': ['../testdata/*']},
install_requires=['six', 'future'],
Expand Down

0 comments on commit da837ec

Please sign in to comment.