-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.62 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# SPDX-FileCopyrightText: 2019-2020 CERN.
# SPDX-FileCopyrightText: 2019-2020 Northwestern University.
# SPDX-FileCopyrightText: 2021-2026 TU Wien.
# SPDX-FileCopyrightText: 2022-2025 Graz University of Technology.
# SPDX-License-Identifier: MIT
[project]
name = "invenio-cli"
description = "Invenio module to ease the creation and management of applications."
readme = "README.rst"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "CERN & Northwestern University", email = "info@inveniosoftware.org" },
]
keywords = [
"invenio-cli",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"babel>=2.8",
"click>=7.1.1",
"click-default-group>=1.2.2",
"cookiecutter>=2.0.0",
"docker>=7.1.0",
"pipenv>=2024.0.3",
"pipfile>=0.0.2",
"pynpm>=0.3.0",
"pyyaml>=5.1.2",
"tomli>=1.1.0;python_version<\"3.11\"",
"virtualenv>=20.0.35",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/inveniosoftware/invenio-cli"
[project.scripts]
invenio-cli = "invenio_cli.cli.cli:invenio_cli"
[project.optional-dependencies]
tests = [
"pytest-black>=0.6.0",
"pytest-invenio>=1.4.0",
"sphinx>=4.2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "invenio_cli/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/invenio_cli",
]
[tool.isort]
profile = "black"
[tool.pydocstyle]
add_ignore = "D401"
[tool.pytest.ini_options]
addopts = '--black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_cli --cov-report=term-missing'
testpaths = "tests invenio_cli"
live_server_scope = "module"