-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
34 lines (30 loc) · 979 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyterrier-t5"
description = "PyTerrier components for T5 ranking"
requires-python = ">=3.9"
authors = [
{name = "Sean MacAvaney", email = "[email protected]"},
]
maintainers = [
{name = "Sean MacAvaney", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Text Processing",
"Topic :: Text Processing :: Indexing",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
version = {attr = "pyterrier_t5.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
exclude = ["tests"]
[project.urls]
Repository = "https://github.com/terrierteam/pyterrier_t5"
"Bug Tracker" = "https://github.com/terrierteam/pyterrier_t5/issues"