Datasets:
Matthew Franglen
commited on
Commit
·
c986f65
1
Parent(s):
847cb85
Add typer to invoke the commands
Browse files- poetry.lock +22 -1
- pyproject.toml +1 -0
poetry.lock
CHANGED
|
@@ -1360,6 +1360,27 @@ notebook = ["ipywidgets (>=6)"]
|
|
| 1360 |
slack = ["slack-sdk"]
|
| 1361 |
telegram = ["requests"]
|
| 1362 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1363 |
[[package]]
|
| 1364 |
name = "types-pytz"
|
| 1365 |
version = "2023.3.1.1"
|
|
@@ -1617,4 +1638,4 @@ multidict = ">=4.0"
|
|
| 1617 |
[metadata]
|
| 1618 |
lock-version = "2.0"
|
| 1619 |
python-versions = ">=3.11,<3.12"
|
| 1620 |
-
content-hash = "
|
|
|
|
| 1360 |
slack = ["slack-sdk"]
|
| 1361 |
telegram = ["requests"]
|
| 1362 |
|
| 1363 |
+
[[package]]
|
| 1364 |
+
name = "typer"
|
| 1365 |
+
version = "0.9.0"
|
| 1366 |
+
description = "Typer, build great CLIs. Easy to code. Based on Python type hints."
|
| 1367 |
+
optional = false
|
| 1368 |
+
python-versions = ">=3.6"
|
| 1369 |
+
files = [
|
| 1370 |
+
{file = "typer-0.9.0-py3-none-any.whl", hash = "sha256:5d96d986a21493606a358cae4461bd8cdf83cbf33a5aa950ae629ca3b51467ee"},
|
| 1371 |
+
{file = "typer-0.9.0.tar.gz", hash = "sha256:50922fd79aea2f4751a8e0408ff10d2662bd0c8bbfa84755a699f3bada2978b2"},
|
| 1372 |
+
]
|
| 1373 |
+
|
| 1374 |
+
[package.dependencies]
|
| 1375 |
+
click = ">=7.1.1,<9.0.0"
|
| 1376 |
+
typing-extensions = ">=3.7.4.3"
|
| 1377 |
+
|
| 1378 |
+
[package.extras]
|
| 1379 |
+
all = ["colorama (>=0.4.3,<0.5.0)", "rich (>=10.11.0,<14.0.0)", "shellingham (>=1.3.0,<2.0.0)"]
|
| 1380 |
+
dev = ["autoflake (>=1.3.1,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)", "pre-commit (>=2.17.0,<3.0.0)"]
|
| 1381 |
+
doc = ["cairosvg (>=2.5.2,<3.0.0)", "mdx-include (>=1.4.1,<2.0.0)", "mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "pillow (>=9.3.0,<10.0.0)"]
|
| 1382 |
+
test = ["black (>=22.3.0,<23.0.0)", "coverage (>=6.2,<7.0)", "isort (>=5.0.6,<6.0.0)", "mypy (==0.910)", "pytest (>=4.4.0,<8.0.0)", "pytest-cov (>=2.10.0,<5.0.0)", "pytest-sugar (>=0.9.4,<0.10.0)", "pytest-xdist (>=1.32.0,<4.0.0)", "rich (>=10.11.0,<14.0.0)", "shellingham (>=1.3.0,<2.0.0)"]
|
| 1383 |
+
|
| 1384 |
[[package]]
|
| 1385 |
name = "types-pytz"
|
| 1386 |
version = "2023.3.1.1"
|
|
|
|
| 1638 |
[metadata]
|
| 1639 |
lock-version = "2.0"
|
| 1640 |
python-versions = ">=3.11,<3.12"
|
| 1641 |
+
content-hash = "97fda829f2130c085ca6e89662916eae655cfb74022584ce038412177d6940db"
|
pyproject.toml
CHANGED
|
@@ -13,6 +13,7 @@ huggingface-hub = "^0.17.3"
|
|
| 13 |
levenshtein = "^0.22.0"
|
| 14 |
pandas = "^2.1.1"
|
| 15 |
pyarrow = "^13.0.0"
|
|
|
|
| 16 |
|
| 17 |
|
| 18 |
[tool.poetry.group.dev.dependencies]
|
|
|
|
| 13 |
levenshtein = "^0.22.0"
|
| 14 |
pandas = "^2.1.1"
|
| 15 |
pyarrow = "^13.0.0"
|
| 16 |
+
typer = "^0.9.0"
|
| 17 |
|
| 18 |
|
| 19 |
[tool.poetry.group.dev.dependencies]
|