-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 829 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
setup(
name="bm25_fusion",
version="0.1.4.2",
author="Rohith Ramakrishnan",
author_email="rrohith2001@gmail.com",
description="An ultra-fast BM25 retriever with support for multiple variants, metadata filtering, and stopword removal.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Rohith-2/bm25-fusion",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.8",
install_requires=[
"numpy",
"numba",
"nltk",
"h5py",
"tqdm"
],
)