diff --git a/.gitignore b/.gitignore index f8cba3d..9270065 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,6 @@ __pycache__ .vscode .ruff_cache dist -clipea.egg-info +clipea_cli.egg-info build -.DS_Store \ No newline at end of file +.DS_Store diff --git a/README.md b/README.md index ccf41f8..464ba3a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Clipea 📎🟢 -[![Install with Homebrew](https://img.shields.io/badge/Homebrew-Tap-blue.svg)](https://github.com/dave1010/homebrew-clipea) +[![Install with pip](https://img.shields.io/badge/Install_with-pip-blue)](https://pypi.org/project/clipea-cli/) +[![PyPI](https://img.shields.io/pypi/v/clipea-cli.svg)](https://pypi.org/project/clipea-cli/) + **Like Clippy but for the CLI. A blazing fast AI helper for your command line.** @@ -25,8 +27,7 @@ Advantages over copying and pasting from ChatGPT: ## 🚀 Quick Start - brew tap dave1010/clipea - brew install clipea + pip install clipea-cli clipea setup clipea alias @@ -174,9 +175,9 @@ Or development mode: pip install -e . -### With PyPi (soon) +### With PyPi - #pip install clipea + pip install clipea-cli ### Zsh Shell integration and Alias diff --git a/setup.py b/setup.py index d8f119d..57430aa 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,19 @@ """ from setuptools import setup, find_packages +with open('README.md', encoding='utf-8') as f: + long_description = f.read() + setup( - name="clipea", + name="clipea-cli", version="0.1.0", description=" 📎🟢 Like Clippy but for the CLI. A blazing fast AI helper for your command line ", url="https://github.com/dave1010/clipea/", + long_description=long_description, + long_description_content_type='text/markdown', author="Dave Hulbert", author_email="dave1010@gmail.com", + keywords='cli, ai, assistant, automation', license="MIT", packages=find_packages(), install_requires=["llm"],