Skip to content

Commit

Permalink
Fixed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilkmr300 committed Mar 13, 2024
1 parent e475f1d commit fcbc2f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
*.egg-info
*.key
.venv
.vscode
__pycache__
dist
4 changes: 2 additions & 2 deletions scanman.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ class Scanman < Formula
include Language::Python::Virtualenv

desc "Using LLMs to interact with man pages"
url "https://github.com/nikhilkmr300/scanman/archive/refs/tags/1.0.0.tar.gz"
sha256 "0682e815dc203514a42a8eb0d8808ba00b4ed636849afe2f2295ea4154f7f0e8"
url "https://github.com/nikhilkmr300/scanman/archive/refs/tags/1.0.3.tar.gz"
sha256 "9e90b570b5e494558dd695b5a9db389a9bb7666f76fba39f04f2b85c3a3412fc"

depends_on "python@3.11"

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
name="scanman",
description="Using LLMs to interact with man pages",
url="https://github.com/nikhilkmr300/scanman",
version="1.0.3",
author="Nikhil Kumar",
author_email="nikhilkmr300@gmail.com",
license="MIT",
packages=find_packages(where="src"),
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"faiss-cpu",
"langchain",
Expand Down

0 comments on commit fcbc2f5

Please sign in to comment.