-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
64 lines (59 loc) · 1.76 KB
/
setup.py
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import setuptools
from cherche.__version__ import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
base_packages = [
"numpy >= 1.23.5",
"scikit-learn >= 1.5.0",
"lunr >= 0.6.2",
"rapidfuzz >= 3.0.0",
"flashtext >= 2.7",
"tqdm >= 4.62.3",
"scipy >= 1.7.3",
"lenlp == 1.1.0",
"sentence-transformers >= 3.0.0",
]
cpu = ["sentence-transformers >= 3.0.0", "faiss-cpu >= 1.7.4"]
gpu = ["sentence-transformers >= 3.0.0", "faiss-gpu >= 1.7.4"]
dev = [
"numpydoc >= 1.4.0",
"mkdocs_material >= 8.3.5",
"mkdocs-awesome-pages-plugin >= 2.7.0",
"mkdocs-jupyter >= 0.21.0",
"pytest-cov >= 4.0.0",
"pytest >= 7.3.1",
"isort >= 5.12.0",
"ipywidgets >= 8.0.6",
]
setuptools.setup(
name="cherche",
version=f"{__version__}",
license="MIT",
author="Raphael Sourty",
author_email="[email protected]",
description="Neural Search",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/raphaelsty/cherche",
download_url="https://github.com/user/cherche/archive/v_01.tar.gz",
keywords=[
"neural search",
"information retrieval",
"question answering",
"semantic search",
],
packages=setuptools.find_packages(),
install_requires=base_packages,
extras_require={
"cpu": base_packages + cpu,
"gpu": base_packages + gpu,
"dev": base_packages + cpu + dev,
},
package_data={"cherche": ["data/towns.json", "data/semanlink/*.json"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)