-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 1.02 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
[project]
name = "invenio-rdm-starter"
version = "13.0.8.1"
description = "Starter for the invenio-rdm turn-key research data management repository"
authors = [{ name = "Martin Fenner", email = "martin@front-matter.de" }]
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
dependencies = [
"invenio-app-rdm>=13.0.8,<14.0.0",
"invenio-search[opensearch2]>=3.0.0",
"invenio-s3>=3.0.2",
"invenio-previewer>=3.3.0,<3.4.0",
"gunicorn~=23.0.0",
"invenio-oauthclient",
"invenio-db",
"setuptools<81",
]
[tool.uv.sources]
invenio-oauthclient = { git = "https://github.com/front-matter/invenio-oauthclient", branch = "maint-v5.x" }
invenio-db = { git = "https://github.com/front-matter/invenio-db", branch = "cli-commands" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["site/invenio_rdm_starter/*.py"]
[tool.ruff]
line-length = 79
include = ["pyproject.toml", "site/**/*.py"]
[project.optional-dependencies]
docs = ["mkdocs-material>=9.7.0"]