-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (37 loc) · 1.13 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 = "pyterrier-dr"
description = "Dense Retrieval for PyTerrier"
requires-python = ">=3.8"
authors = [
{name = "Sean MacAvaney", email = "[email protected]"},
]
maintainers = [
{name = "Sean MacAvaney", email = "[email protected]"},
]
readme = "README.rst"
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Text Processing",
"Topic :: Text Processing :: Indexing",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
version = {attr = "pyterrier_dr.__version__"}
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
bgem3 = [
"FlagEmbedding",
]
[tool.setuptools.packages.find]
exclude = ["tests"]
[project.urls]
Repository = "https://github.com/terrierteam/pyterrier_dr"
"Bug Tracker" = "https://github.com/terrierteam/pyterrier_dr/issues"
[project.entry-points."pyterrier.artifact"]
"dense_index.flex" = "pyterrier_dr:FlexIndex"
"cde_cache.np_pickle" = "pyterrier_dr:CDECache"