Skip to content

Commit

Permalink
Remove click dependency for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Florents-Tselai committed Jun 23, 2024
1 parent ba8c457 commit 30bf219
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ venv
dist
build
.idea/
docs/_build
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand All @@ -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",
)
1 change: 0 additions & 1 deletion tests/test_tsellm.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from sqlite_utils import Database
import llm
from tsellm.cli import cli


Expand Down

0 comments on commit 30bf219

Please sign in to comment.