Skip to content

Commit fcbc2f5

Browse files
committed
Fixed setup.py
1 parent e475f1d commit fcbc2f5

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
*.egg-info
12
*.key
23
.venv
34
.vscode
45
__pycache__
6+
dist

scanman.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ class Scanman < Formula
22
include Language::Python::Virtualenv
33

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

88
depends_on "[email protected]"
99

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
name="scanman",
55
description="Using LLMs to interact with man pages",
66
url="https://github.com/nikhilkmr300/scanman",
7+
version="1.0.3",
78
author="Nikhil Kumar",
89
author_email="[email protected]",
910
license="MIT",
10-
packages=find_packages(where="src"),
11+
packages=find_packages("src"),
12+
package_dir={"": "src"},
1113
install_requires=[
1214
"faiss-cpu",
1315
"langchain",

0 commit comments

Comments
 (0)