-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.48 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
44
45
46
47
48
49
50
51
[project]
name = "rankflow"
version = "0.1.4"
description = "Plot how multiple ranks evolved over processing steps - draw a rankflow."
authors = [
{name = "Krystian Safjan", email = "[email protected]"},
]
dependencies = [
"matplotlib>=3.9.0",
"numpy>=1.26.4",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
keywords = ["rankflow", "rank", "flow", "plot", "RAG", "retriever", "evaluation", "rag-evaluation", "rag-eval", "rag-eval-plot", "rag-evaluation-plot"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
"Source" = "https://github.com/izikeros/rankflow"
"Bug Tracker" = "https://github.com/izikeros/rankflow/issues"
[project.optional-dependencies]
socks = ["pandas"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"black>=24.4.2",
"isort>=5.13.2",
"pandas>=2.2.2",
"pytest>=8.2.2",
]