-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also: - Updated .gitignore - Added flake8 and tagging to invoke tasks - Fixed flake8 warnings - Added Pipfile for ease of use
- Loading branch information
1 parent
ef8c90a
commit 30be66a
Showing
9 changed files
with
85 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,3 +102,9 @@ venv.bak/ | |
|
||
# mypy | ||
.mypy_cache/ | ||
|
||
# PyCharm / IntelliJ | ||
.idea | ||
|
||
# Pipenv | ||
Pipfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[[source]] | ||
name = "pypi" | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
|
||
[packages] | ||
cmd2 = ">=0.10.0" | ||
|
||
[dev-packages] | ||
cmd2-abbrev = {editable = true,path = "."} | ||
codecov = "*" | ||
flake8 = "*" | ||
gnureadline = {version = "*",sys_platform = "== 'darwin'"} | ||
invoke = "*" | ||
ipython = "*" | ||
mock = {version = "*",markers = "python_version < '3.6'"} | ||
pyreadline = {version = "*",sys_platform = "== 'win32'"} | ||
pytest = "*" | ||
pytest-cov = "*" | ||
pytest-mock = "*" | ||
twine = ">=1.11" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# coding=utf-8 | ||
# flake8: noqa E302 | ||
|
||
import argparse | ||
|
||
|