-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(better prompts for mainstream commands): user will be prompted f…
…or mandatory inputs if none
- Loading branch information
psadi
committed
Nov 9, 2022
1 parent
d87abd2
commit 8a6e19f
Showing
10 changed files
with
84 additions
and
59 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 |
---|---|---|
|
@@ -152,3 +152,5 @@ cython_debug/ | |
.idea/ | ||
__pycache__ | ||
__PYCACHE__ | ||
node_modules | ||
package*.json |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
""" | ||
bb: A command line utility to manage pull requests in bitbucket | ||
""" | ||
__version__ = "0.4.4" | ||
__version__ = "0.4.5" | ||
__author__ = "P S, Adithya (psadi) ([email protected])" | ||
__license__ = "MIT" | ||
__doc__ = f"VERSION: {__version__} \nAUTHOR: {__author__} \nLICENSE: {__license__}" |
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
Empty file.
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
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "bb" | ||
version = "0.4.4" | ||
version = "0.4.5" | ||
description = "cli to manage bitbucket pull requests" | ||
authors = ["psadi <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -19,9 +19,9 @@ bb = "bb.main:app" | |
[tool.poetry.dependencies] | ||
python = ">=3.7,<4.0.0" | ||
typer = {extras = ["all"], version = "^0.4.0"} | ||
requests = "^2.27.1" | ||
rich = "^11.1.0" | ||
pyperclip = "^1.8.2" | ||
requests = ">=2.27.1" | ||
rich = ">=11.1.0" | ||
pyperclip = ">=1.8.2" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^5.2" | ||
|