-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (34 loc) · 1.37 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
[project]
name = "datamaestro-text"
requires-python = ">=3.8"
keywords = ["dataset manager", "information retrieval", "experiments"]
description = "Datamaestro module for text-related datasets"
dynamic = ["version", "readme", "dependencies"]
license = {text = "GPL-3"}
authors = [
{ name = "Benjamin Piwowarski", email = "[email protected]" }
]
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]
dependencies = {file = ["requirements.txt"]}
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.urls]
homepage = "https://github.com/experimaestro/datamaestro_text"
documentation = "https://datamaestro-text.readthedocs.io/en/latest/"
repository = "https://github.com/experimaestro/datamaestro_text"
[tool.setuptools_scm]
write_to = "src/datamaestro_text/version.py"
fallback_version = "0.0.0-dev"
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"] # PEP 508 specifications.
[project.entry-points."datamaestro.repositories"]
text = "datamaestro_text:Repository"
irds = "datamaestro_text.datasets.irds:Repository"