diff --git a/.gitignore b/.gitignore index b17be16..d13d4ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .env *venv/ __pycache__/ +dist/ \ No newline at end of file diff --git a/README.md b/README.md index 19fb5e4..f794b9f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Interact with Large Language Models (LLMs) via email. ## Prerequisites ### Python - Python ^3.11 -- Poetry +- Poetry (optional) - An API key from an OpenAI-compatible API - At the time of writing, [OpenRouter](https://openrouter.ai/docs#models) provides free access to select models - Right now, they are the only provider that will work due to the model being hard-coded (for now) @@ -21,12 +21,12 @@ Cloning the repository is not required when installing from PyPi but is required 2. `cd` into the cloned repository 3. Install with [Poetry](https://python-poetry.org/) - +2. `llmail` #### Poetry 1. `poetry install` diff --git a/pyproject.toml b/pyproject.toml index 1031047..2f28c73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,8 @@ name = "llmail" version = "0.1.0" description = "Interact with LLMs via email" authors = ["slashtechno <77907286+slashtechno@users.noreply.github.com>"] +repository = "https://github.com/slashtechno/llmail" +keywords = ["llm", "email", "ai", "openai"] license = "GNU AGPLv3" readme = "README.md"