-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from btr1975/feature/move-to-pyproject-toml
Feature/move to pyproject toml
- Loading branch information
Showing
16 changed files
with
172 additions
and
735 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
|
||
build: | ||
os: "ubuntu-22.04" | ||
tools: | ||
python: "3.8" | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
python: | ||
install: | ||
- requirements: requirements-dev.txt |
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,29 @@ | ||
# Makefile for project needs | ||
# Author: Ben Trachtenberg | ||
# Version: 1.0.3 | ||
# | ||
|
||
.PHONY: info app-run coverage pylint pytest gh-pages pdf build | ||
|
||
info: | ||
@echo "make options" | ||
@echo " build To build" | ||
@echo " coverage To run coverage and display ASCII and output to htmlcov" | ||
@echo " pylint To run pylint" | ||
@echo " pytest To run pytest with verbose option" | ||
@echo " pdf To create PDF Docs" | ||
|
||
build: | ||
@python -m build | ||
|
||
coverage: | ||
@pytest --cov --cov-report=html -vvv | ||
|
||
pylint: | ||
@pylint pyats_genie_command_parse/ | ||
|
||
pytest: | ||
@pytest --cov -vvv | ||
|
||
pdf: | ||
@sphinx-build -b rinoh ./docs ./docs/_build/pdf |
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,4 +1,4 @@ | ||
""" | ||
init for pyats_genie_command_parse | ||
""" | ||
from .pyats_genie_command_parse import GenieCommandParse | ||
from pyats_genie_command_parse.pyats_genie_command_parse import GenieCommandParse |
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,15 +1,7 @@ | ||
""" | ||
Holds the version information for the package | ||
""" | ||
__title__ = 'pyats-genie-command-parse' | ||
__description__ = 'Run genie parsers directly.' | ||
__author__ = 'Benjamin P. Trachtenberg, Brett Gianpetro' | ||
__copyright__ = "Copyright (c) 2020 - 2023, Benjamin P. Trachtenberg, Brett Gianpetro" | ||
__credits__ = None | ||
__license__ = 'The MIT License (MIT)' | ||
__status__ = 'prod' | ||
__version_info__ = (1, 3, 4) | ||
__version_info__ = (1, 3, 5) | ||
__version__ = '.'.join(map(str, __version_info__)) | ||
__maintainer__ = 'Benjamin P. Trachtenberg' | ||
__email__ = 'e_ben_75-python@yahoo.com' | ||
__url__ = 'https://pyats-genie-command-parse.readthedocs.io' |
Oops, something went wrong.