Skip to content

Commit

Permalink
Add information that grayskull can also accept github url instead of …
Browse files Browse the repository at this point in the history
…only the package name (#495)
  • Loading branch information
marcelotrevisani authored Sep 21, 2023
1 parent 18fbf5f commit 851c8d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion grayskull/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ def init_parser():
# create parser for pypi
pypi_parser = subparsers.add_parser("pypi", help="Options to generate PyPI recipes")
pypi_parser.add_argument(
"pypi_packages", nargs="+", help="Specify the PyPI packages name.", default=[]
"pypi_packages",
nargs="+",
help="Specify the PyPI packages name. Grayskull can also accept a github url.",
default=[],
)
pypi_parser.add_argument(
"--download",
Expand Down

0 comments on commit 851c8d3

Please sign in to comment.