-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
56 lines (47 loc) · 1.54 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
52
53
54
55
56
[project]
name = "experimaestro-ir"
requires-python = ">=3.9"
keywords = ["neural information retrieval", "information retrieval", "experiments"]
description = "Experimaestro common module for IR experiments"
dynamic = ["version", "readme", "dependencies"]
license = {text = "GPL-3"}
authors = [
{ name = "Benjamin Piwowarski", email = "benjamin@piwowarski.fr" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
anserini = [
"pyserini >= 0.20.0"
]
neural = [
"torch>=1.12",
"tensorboard",
"transformers",
"sentence_transformers"
]
[project.urls]
homepage = "https://github.com/bpiwowar/experimaestro-ir"
documentation = "https://experimaestro-ir.readthedocs.io/en/latest/"
repository = "https://github.com/bpiwowar/experimaestro-ir"
[project.scripts]
xpmir = "xpmir.__main__:main"
[project.entry-points."datamaestro.repositories"]
ir = "xpmir:Repository"
[tool.setuptools_scm]
write_to = "src/xpmir/_version.py"
fallback_version = "0.0.0-dev"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
[tool.pyright]
include = ["xpmir"]