Skip to content

Commit 288d5b8

Browse files
committed
Added setup.py
1 parent 794c241 commit 288d5b8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="scanman",
5+
version="1.0.1",
6+
description="Using LLMs to interact with man pages",
7+
url="https://github.com/nikhilkmr300/scanman",
8+
author="Nikhil Kumar",
9+
author_email="[email protected]",
10+
license="MIT",
11+
packages=find_packages(),
12+
install_requires=[
13+
"faiss-cpu",
14+
"langchain",
15+
"langchain-openai",
16+
"langchainhub",
17+
"openai",
18+
"termcolor"
19+
],
20+
)

0 commit comments

Comments
 (0)