-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull out the table padding logic into a common file
Going to be applying it to the status table soon and I need this to avoid copy/pasting all of the padding arithmetic.
- Loading branch information
Showing
6 changed files
with
25 additions
and
39 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
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 |
---|---|---|
|
@@ -8,20 +8,21 @@ keywords = ["bootstrap", "booty", "setup", "cli", "tool"] | |
authors = ["Anthony Naddeo <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{ include = "booty/**/*.py" }] | ||
|
||
packages = [ | ||
{ include = "booty/**/*.py"}, | ||
{ include = "booty/**/*.lark"}, | ||
{ include = "booty/**/*.booty"} | ||
] | ||
|
||
[tool.poetry.scripts] | ||
booty = "booty.cli:cli" | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9, <3.13" | ||
lark = "^1.1.8" | ||
click = "^8.1.7" | ||
rich = "^13.7.0" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
pyright = "^1.1.338" | ||
ruff = "^0.1.7" | ||
|