Skip to content

Commit

Permalink
feat: Implement typer as CLI (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnye0 authored May 9, 2024
1 parent 5d5dac7 commit b9def08
Show file tree
Hide file tree
Showing 5 changed files with 1,726 additions and 103 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ sh = ">=2.0.0"
pyyaml = ">=6"
colorama = ">=0.4.6"
python-dotenv = ">=0.21.1"
typer = ">=0.9.0"
rich = { version = ">=10.11.0", optional = true }
textual = { version = ">=0.48", optional = true }
plotille = { version = ">=5", optional = true }
Expand Down Expand Up @@ -80,7 +81,7 @@ exclude = [
fix = true

[tool.ruff.lint]
ignore = ["RUF012"]
ignore = ["RUF012", "PLR0913", "PLR0915"]
select = [
"E", # pycodestyle
"F", # pyflakes
Expand All @@ -106,7 +107,7 @@ exclude_dirs = ["tests"]
targets = "src/sugar/"

[tool.vulture]
exclude = ["tests"]
exclude = ["tests", "src/sugar/cli.py"]
ignore_decorators = []
ignore_names = []
make_whitelist = true
Expand Down
Loading

0 comments on commit b9def08

Please sign in to comment.