-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chad Smith
authored
Jan 26, 2020
1 parent
21f2fe5
commit d7b6033
Showing
14 changed files
with
147 additions
and
82 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 |
---|---|---|
|
@@ -7,6 +7,6 @@ __pycache__ | |
*egg* | ||
__pycache__ | ||
*.dSYM | ||
docs | ||
.mypy_cache/ | ||
venv | ||
venv | ||
site |
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,9 +1,12 @@ | ||
include *.md | ||
include LICENSE | ||
|
||
graft pygdbmi | ||
|
||
exclude example.py | ||
exclude .flake8 | ||
exclude noxfile.py | ||
exclude mkdocs.yml | ||
|
||
prune tests | ||
prune docs |
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 @@ | ||
../CHANGELOG.md |
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 @@ | ||
../README.md |
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 @@ | ||
::: pygdbmi.gdbcontroller |
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 @@ | ||
::: pygdbmi.gdbmiparser |
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,22 @@ | ||
site_name: pygdbmi | ||
site_description: Parse gdb machine interface output with Python | ||
|
||
theme: | ||
name: "material" | ||
repo_name: cs01/pygdbmi | ||
repo_url: https://github.com/cs01/pygdbmi | ||
|
||
nav: | ||
- Home: "README.md" | ||
- Api: | ||
- "gdbmiparser": "api/gdbmiparser.md" | ||
- "gdbcontroller": "api/gdbcontroller.md" | ||
- Changelog: "CHANGELOG.md" | ||
|
||
markdown_extensions: | ||
- admonition # note blocks, warning blocks -- https://github.com/mkdocs/mkdocs/issues/1659 | ||
- codehilite | ||
|
||
plugins: | ||
- mkdocstrings | ||
- search |
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,8 +1 @@ | ||
""" | ||
.. include:: ../README.md | ||
""" | ||
__title__ = "pygdbmi" | ||
__version__ = "0.9.0.2" | ||
__author__ = "Chad Smith" | ||
__copyright__ = "Copyright Chad Smith" | ||
__pdoc__ = {"StringStream": False, "printcolor": False} | ||
__version__ = "0.9.0.3" |
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
Oops, something went wrong.