Skip to content

Commit

Permalink
Add tests into setup.py, add .gitignore (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
buxtronix authored Jul 17, 2019
1 parent 90bf1fa commit 5d5f63a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.pyc

/dist/

/*.egg-info
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[metadata]
description-file = README.md

[aliases]
test=pytest
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,6 @@
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'],
requires=['six'],
packages=['textfsm'])
packages=['textfsm'],
setup_requires=['pytest-runner'],
tests_require=['pytest'])

0 comments on commit 5d5f63a

Please sign in to comment.