-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
126 lines (109 loc) · 3.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "invenio-modular-deposit-form"
version = "0.3.2-dev0"
description = "An InvenioRDM extension that adds a more modular and customizable version of the record deposit form"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Mesh Research", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
]
keywords = ["invenio", "invenio-rdm", "deposit-form", "ui", "extensions"]
requires-python = ">=3.9"
dependencies = [
"invenio-app-rdm>=12.0.0,<13.0.0",
]
[project.optional-dependencies]
dev = [
"sphinx>=4.5.0",
]
tests = [
"pytest-invenio>=2.1.0,<3.0.0",
"pytest-black>=0.3.0",
]
[project.urls]
Homepage = "https://github.com/MESH-Research/invenio-modular-deposit-form"
[project.entry-points."invenio_base.apps"]
invenio_modular_deposit_form = "invenio_modular_deposit_form:InvenioModularDepositForm"
[project.entry-points."invenio_base.blueprints"]
invenio_modular_deposit_form = "invenio_modular_deposit_form.ext:create_blueprint"
[project.entry-points."invenio_i18n.translations"]
messages = "invenio_modular_deposit_form"
[project.entry-points."invenio_assets.webpack"]
invenio_modular_deposit_form_theme = "invenio_modular_deposit_form.webpack:theme"
[tool.pytest.ini_options]
addopts = "--black --isort --pydocstyle --doctest-glob=\"*.rst\" --doctest-modules --cov=invenio_modular_deposit_form --cov-report=term-missing"
testpaths = ["docs", "tests", "invenio_modular_deposit_form"]
[tool.pydocstyle]
add-ignore = ["D401"]
[tool.isort]
profile = "black"
[tool.babel.compile_catalog]
directory = "invenio_modular_deposit_form/translations/"
use-fuzzy = true
[tool.babel.extract_messages]
copyright_holder = "Mesh Research"
msgid_bugs_address = "[email protected]"
mapping-file = "babel.ini"
output-file = "invenio_modular_deposit_form/translations/messages.pot"
add-comments = "NOTE"
[tool.babel.init_catalog]
# input-file = "invenio_modular_deposit_form/translations/messages.pot"
output-dir = "invenio_modular_deposit_form/translations/"
[tool.babel.update_catalog]
input-file = "invenio_modular_deposit_form/translations/messages.pot"
output-dir = "invenio_modular_deposit_form/translations/"
[tool.check-manifest]
ignore = [
"* .mo",
"*.bin",
"*.gitkeep",
".*-requirements.txt",
".bzrignore",
".DS_Store",
".egg-info",
".egg-info/*",
".gitattributes",
".github/*",
".gitignore",
".hgsigs",
".hgtags",
".hgignore",
".travis.yml",
"Jenkinsfile",
"PKG-INFO",
"setup.cfg",
"*.lock",
"Pipfile",
".vscode/*",
]
[tool.bumpver]
current_version = "0.3.2-dev0"
version_pattern = "MAJOR.MINOR.PATCH[-TAGNUM]"
commit_message = "Bumping version {old_version} -> {new_version}."
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^version = "{version}"',
'^current_version = "{version}"',
]
"README.md" = [
'^Version {version}',
]
VERSION = [
'^"{version}"',
]
"invenio_modular_deposit_form/__init__.py" = [
'^__version__ = "{version}"',
]