Skip to content

Commit

Permalink
update pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
amineHY committed Mar 14, 2024
1 parent dc64c87 commit 6eec50a
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@

- [Check Spelling of a selected text accros OS](#check-spelling-of-a-selected-text-accros-os)
- [Install The Project](#install-the-project)
- [Export a requirements file](#export-a-requirements-file)
- [Run the project](#run-the-project)
- [Usage](#usage)

## Install The Project

poetry install

## Export a requirements file

```
poetry export --format=requirements.txt --output=requirements.txt --without-hashes
```

pyright spellchecker_llm/script.py

## Run the project

Activate python environment
Expand Down
50 changes: 49 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ requests = "^2.31.0"
ollama = "^0.1.7"
logging = "^0.4.9.6"
pylint = "^3.1.0"
pyright = "^1.1.352"


[build-system]
Expand Down
33 changes: 33 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
anyio==4.3.0 ; python_version >= "3.11" and python_version < "4.0"
astroid==3.1.0 ; python_version >= "3.11" and python_version < "4.0"
certifi==2024.2.2 ; python_version >= "3.11" and python_version < "4.0"
charset-normalizer==3.3.2 ; python_version >= "3.11" and python_version < "4.0"
colorama==0.4.6 ; python_version >= "3.11" and python_version < "4.0" and sys_platform == "win32"
dill==0.3.8 ; python_version >= "3.11" and python_version < "4.0"
evdev==1.7.0 ; python_version >= "3.11" and python_version < "4.0" and sys_platform in "linux"
h11==0.14.0 ; python_version >= "3.11" and python_version < "4.0"
httpcore==1.0.4 ; python_version >= "3.11" and python_version < "4.0"
httpx==0.25.2 ; python_version >= "3.11" and python_version < "4.0"
idna==3.6 ; python_version >= "3.11" and python_version < "4.0"
isort==5.13.2 ; python_version >= "3.11" and python_version < "4.0"
logging==0.4.9.6 ; python_version >= "3.11" and python_version < "4.0"
mccabe==0.7.0 ; python_version >= "3.11" and python_version < "4.0"
nodeenv==1.8.0 ; python_version >= "3.11" and python_version < "4.0"
ollama==0.1.7 ; python_version >= "3.11" and python_version < "4.0"
platformdirs==4.2.0 ; python_version >= "3.11" and python_version < "4.0"
pylint==3.1.0 ; python_version >= "3.11" and python_version < "4.0"
pynput==1.7.6 ; python_version >= "3.11" and python_version < "4.0"
pyobjc-core==10.1 ; python_version >= "3.11" and python_version < "4.0" and sys_platform == "darwin"
pyobjc-framework-applicationservices==10.1 ; python_version >= "3.11" and python_version < "4.0" and sys_platform == "darwin"
pyobjc-framework-cocoa==10.1 ; python_version >= "3.11" and python_version < "4.0" and sys_platform == "darwin"
pyobjc-framework-coretext==10.1 ; python_version >= "3.11" and python_version < "4.0" and sys_platform == "darwin"
pyobjc-framework-quartz==10.1 ; python_version >= "3.11" and python_version < "4.0" and sys_platform == "darwin"
pyperclip==1.8.2 ; python_version >= "3.11" and python_version < "4.0"
pyright==1.1.352 ; python_version >= "3.11" and python_version < "4.0"
python-xlib==0.33 ; python_version >= "3.11" and python_version < "4.0" and sys_platform in "linux"
requests==2.31.0 ; python_version >= "3.11" and python_version < "4.0"
setuptools==69.1.1 ; python_version >= "3.11" and python_version < "4.0"
six==1.16.0 ; python_version >= "3.11" and python_version < "4.0"
sniffio==1.3.1 ; python_version >= "3.11" and python_version < "4.0"
tomlkit==0.12.4 ; python_version >= "3.11" and python_version < "4.0"
urllib3==2.2.1 ; python_version >= "3.11" and python_version < "4.0"

0 comments on commit 6eec50a

Please sign in to comment.