Skip to content

Commit

Permalink
add __main__.py to enable execution via python -m command (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
retornam authored and carljm committed Jul 28, 2018
1 parent 9fb191a commit 8d89e13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ build/
.idea/
monkeytype.sqlite3
.pytest_cache/
.DS_Store
3 changes: 3 additions & 0 deletions monkeytype/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from monkeytype.cli import entry_point_main

entry_point_main()

0 comments on commit 8d89e13

Please sign in to comment.