From 30bf219a10c75cd4b2f1a859ffc0a80581b763a8 Mon Sep 17 00:00:00 2001 From: Florents Tselai Date: Sun, 23 Jun 2024 11:21:54 +0300 Subject: [PATCH] Remove click dependency for now --- .gitignore | 1 + setup.py | 8 ++++---- tests/test_tsellm.py | 1 - 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index f58447b..f3b8a4e 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ venv dist build .idea/ +docs/_build \ No newline at end of file diff --git a/setup.py b/setup.py index 7bbd395..b95a8ac 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ def get_long_description(): with open( - os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"), - encoding="utf8", + os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"), + encoding="utf8", ) as fp: return fp.read() @@ -31,9 +31,9 @@ def get_long_description(): license="MIT License", version=VERSION, packages=["tsellm"], - install_requires=["click", "llm", "setuptools", "pip"], + install_requires=["llm", "setuptools", "pip"], extras_require={ - "test": ["pytest", "pytest-cov", "black", "ruff", "click", "sqlite_utils"] + "test": ["pytest", "pytest-cov", "black", "ruff", "sqlite_utils"] }, python_requires=">=3.7", ) diff --git a/tests/test_tsellm.py b/tests/test_tsellm.py index 9c72f0f..e2f27da 100644 --- a/tests/test_tsellm.py +++ b/tests/test_tsellm.py @@ -1,5 +1,4 @@ from sqlite_utils import Database -import llm from tsellm.cli import cli