-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.36 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
42
43
44
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rbstar"
version = "0.1.0"
authors = [
{ name = "Your Name", email = "your.email@example.com" },
]
description = "RBStar: Rank-biased effectiveness metrics for IR evaluation"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["information retrieval", "evaluation metrics", "rank-biased", "IR", "RBP", "RBR", "RBO", "RBA"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"typing-extensions>=4.0.0", # For advanced typing features
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"hypothesis>=6.0.0", # For property-based testing
]
[project.scripts]
rbstar = "rbstar.__main__:rbstar_main"
[project.urls]
"Homepage" = "https://github.com/rbstar/rbstar"
"Bug Tracker" = "https://github.com/rbstar/rbstar/issues"
"Documentation" = "https://rbstar.readthedocs.io/"
[tool.pytest.ini_options]
testpaths = ["rbstar/tests"]
python_files = ["test_*.py"]