From c7a5d30c5fdca54bd04fbf46538851965b5c8093 Mon Sep 17 00:00:00 2001 From: TheTechromancer Date: Thu, 9 Nov 2023 09:57:43 -0500 Subject: [PATCH] updated help, pyproject.toml --- cloudcheck/cloudcheck.py | 2 +- pyproject.toml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/cloudcheck/cloudcheck.py b/cloudcheck/cloudcheck.py index 27f530e..a4f410c 100644 --- a/cloudcheck/cloudcheck.py +++ b/cloudcheck/cloudcheck.py @@ -8,7 +8,7 @@ async def _main(): ips = sys.argv[1:] if not ips: - print("usage: cloudcheck 1.2.3.4 [update | forceupdate | [ips...]]") + print("usage: cloudcheck 1.2.3.4 [update | forceupdate | [ips...] | [domains...]]") elif len(ips) == 1 and ips[0].lower() == "update": await cloud_providers.update() return diff --git a/pyproject.toml b/pyproject.toml index ea331d0..e2cd0a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,12 @@ authors = ["TheTechromancer"] license = "GPL-3.0" readme = "README.md" include = ["cloud_providers.json"] +repository = "https://github.com/blacklanternsecurity/cloudcheck" +homepage = "https://github.com/blacklanternsecurity/cloudcheck" + +[tool.poetry.urls] +"Discord" = "https://discord.com/invite/PZqkgxu5SA" +"PyPi" = "https://pypi.org/project/cloudcheck/" [tool.poetry.scripts] cloudcheck = 'cloudcheck.cloudcheck:main'