diff --git a/poetry.lock b/poetry.lock index 36b419e..e79d81b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -790,6 +790,20 @@ docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1 testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"] typing = ["typing-extensions (>=4.8)"] +[[package]] +name = "fire" +version = "0.6.0" +description = "A library for automatically generating command line interfaces." +optional = false +python-versions = "*" +files = [ + {file = "fire-0.6.0.tar.gz", hash = "sha256:54ec5b996ecdd3c0309c800324a0703d6da512241bc73b553db959d98de0aa66"}, +] + +[package.dependencies] +six = "*" +termcolor = "*" + [[package]] name = "fonttools" version = "4.51.0" @@ -2879,6 +2893,20 @@ files = [ [package.extras] doc = ["reno", "sphinx", "tornado (>=4.5)"] +[[package]] +name = "termcolor" +version = "2.4.0" +description = "ANSI color formatting for output in terminal" +optional = false +python-versions = ">=3.8" +files = [ + {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, + {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, +] + +[package.extras] +tests = ["pytest", "pytest-cov"] + [[package]] name = "toml" version = "0.10.2" @@ -3342,4 +3370,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "1ee8e30cc0c0aac7443d4bef9c418a946545373f9e7a760437affda0c3fe2735" +content-hash = "234f5bae8df2d725b09e251697514ba125026d24693c3267f53b9e8d45429e92" diff --git a/pyproject.toml b/pyproject.toml index 90ebe45..447573d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ bs4 = "^0.0.2" python-dotenv = "^1.0.1" datasets = "^2.18.0" pycountry-convert = "^0.7.2" +fire = "^0.6.0" [tool.poetry.group.dev.dependencies] pre-commit = "^2.20.0"