-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.09 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sentrev"
version = "1.0.1"
authors = [
{ name="Clelia (Astra) Bertelli", email="[email protected]" },
]
description = "SenTrEv - Simple customizable evaluation for dense and sparse retrieval performance on your text documents"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'sentence_transformers == 3.0.1',
'qdrant_client == 1.10.1',
'pypdf == 4.3.1',
'langchain',
'langchain_core',
'langchain_community',
'langchain_text_splitters',
'matplotlib',
'codecarbon',
'pandas',
'fastembed',
'pdfitdown'
]
[project.urls]
Homepage = "https://github.com/AstraBert/SenTrEv"
Issues = "https://github.com/AstraBert/SenTrEv/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["sentrev*"] # Add this line
[options.package_data]
sentrev = ["*"]