Skip to content
This repository was archived by the owner on Oct 31, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# LICENSE file in the root directory of this source tree.


from setuptools import setup
from setuptools import setup, find_packages

with open("README.md") as f:
readme = f.read()
Expand All @@ -26,6 +26,7 @@
setup_requires=[
"setuptools>=18.0",
],
packages=find_packages(exclude=["conf"]),
install_requires=[
"faiss-cpu>=1.6.1",
"filelock",
Expand Down