-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
75 lines (63 loc) · 1.79 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
[metadata]
name = oarepo-runtime
version = 1.5.71
description = A set of runtime extensions of Invenio repository
authors = Alzbeta Pokorna
readme = README.md
long_description = file:README.md
long_description_content_type = text/markdown
[options]
python = >=3.10
install_requires =
marshmallow
langcodes
pyyaml
openpyxl
flask-babelex
deepmerge
tqdm
deprecated
idutils
packages = find:
[options.packages.find]
exclude = records, records2, tests
[options.extras_require]
dev =
pytest>=7.1.2
black
isort
autoflake
oarepo-tools
tests =
pytest>=7.1.2
psutil
# Generated with:
# git ls-files | egrep '^oarepo' | grep -v '.py$' | grep -v '.gitkeep' | sed 's#/[^/]*$##' | sort -u | sed 's#$#/*,#' | sed 's#^[^/]*/##' | tr '\n' ' '
[options.package_data]
* = *.json, *.rst, *.md, *.json5, *.jinja2
oarepo_runtime = translations/*, translations/cs/LC_MESSAGES/*, translations/en/LC_MESSAGES/*
[tool:pytest]
testpaths =
tests
[options.entry_points]
invenio_base.apps =
oarepo_runtime = oarepo_runtime.ext:OARepoRuntime
invenio_base.api_apps =
oarepo_runtime = oarepo_runtime.ext:OARepoRuntime
invenio_celery.tasks =
oarepo_runtime_datastreams = oarepo_runtime.datastreams
oarepo_runtime_check = oarepo_runtime.tasks
invenio_base.blueprints =
oarepo_runtime_info = oarepo_runtime.info.views:create_wellknown_blueprint
oarepo_runtime_check = oarepo_runtime.info.check:blueprint
[oarepo.i18n]
# List of language codes for which translations should be managed
languages =
cs
en
# List of paths to scan for babel messages - python files and jinja templates are scanned
babel_source_paths =
oarepo_runtime
# this is the location where python translations are generated.
babel_output_translations =
oarepo_runtime/translations