forked from oarepo/oarepo-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
77 lines (65 loc) · 1.61 KB
/
setup.cfg
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
[metadata]
name = oarepo-ui
version = 5.1.40
description = UI module for invenio 3.5+
long_description = file: README.md
long_description_content_type = text/markdown
keywords = oarepo ui
license = MIT
author = Mirek Simek
author_email = [email protected]
platforms = any
url = https://github.com/oarepo/oarepo-ui
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.10
zip_safe = False
install_requires =
importlib-metadata>=4.11.4
oarepo-runtime
jinja2-simple-tags
frozendict
jinjax>=0.40
[options.packages.find]
exclude =
tests
[options.extras_require]
dev =
oarepo-tools
tests =
pytest-invenio
black
isort
autoflake
[options.entry_points]
invenio_base.apps =
oarepo_ui = oarepo_ui.ext:OARepoUIExtension
oarepo_ui.extensions =
default = oarepo_ui._components:DefaultUIExtensionConfig
invenio_i18n.translations =
oarepo_ui_messages = oarepo_ui
invenio_assets.webpack =
oarepo_ui_theme = oarepo_ui.theme.webpack:theme
invenio_base.blueprints =
oarepo_ui = oarepo_ui.views:create_blueprint
[bdist_wheel]
universal = 1
[compile_catalog]
directory = oarepo_ui/translations/
[extract_messages]
copyright_holder = CESNET
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = oarepo_ui/translations/messages.pot
add-comments = NOTE
[init_catalog]
input-file = oarepo_ui/translations/messages.pot
output-dir = oarepo_ui/translations/
[update_catalog]
input-file = oarepo_ui/translations/messages.pot
output-dir = oarepo_ui/translations/
[pydocstyle]
add_ignore = D401