Skip to content

Commit

Permalink
Install with PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
dave1010 committed Nov 29, 2023
1 parent 0018b30 commit 633b690
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ __pycache__
.vscode
.ruff_cache
dist
clipea.egg-info
clipea_cli.egg-info
build
.DS_Store
.DS_Store
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.**

Expand All @@ -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

Expand Down Expand Up @@ -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

Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
keywords='cli, ai, assistant, automation',
license="MIT",
packages=find_packages(),
install_requires=["llm"],
Expand Down

0 comments on commit 633b690

Please sign in to comment.