-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.31 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (37 loc) · 1.31 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
package_name = "splade_index"
version = {}
with open(f"{package_name}/version.py", encoding="utf8") as fp:
exec(fp.read(), version)
with open("README.md", encoding="utf8") as fp:
long_description = fp.read()
extras_require = {
"core": ["orjson", "tqdm", "numba"],
"hf": ["huggingface_hub"],
"dev": ["black"],
"selection": ["torch"],
"evaluation": ["pytrec_eval"],
}
# Dynamically create the 'full' extra by combining all other extras
extras_require["full"] = sum(extras_require.values(), [])
setup(
name=package_name,
version=version["__version__"],
author="Yosef Worku Alemneh",
author_email="",
url=f"https://github.com/rasyosef/splade-index",
description=f"An ultra-fast search index for SPLADE sparse neural retrieval models.",
long_description=long_description,
packages=find_packages(include=[f"{package_name}*"]),
package_data={},
install_requires=["numpy", "sentence-transformers>=5.0.0"],
extras_require=extras_require,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
# Cast long description to markdown
long_description_content_type="text/markdown",
)