-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.cfg
More file actions
133 lines (118 loc) · 3.81 KB
/
setup.cfg
File metadata and controls
133 lines (118 loc) · 3.81 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
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
127
128
129
130
131
132
133
# -*- coding: utf-8 -*-
#
# Copyright (C) 2024 CERN.
# Copyright (C) 2024-2026 Graz University of Technology.
# Copyright (C) 2025 Northwestern University.
#
# Invenio-Jobs is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
[metadata]
name = invenio-jobs
version = attr: invenio_jobs.__version__
description = InvenioRDM module for jobs management
long_description = file: README.rst, CHANGES.rst
keywords = invenio rdm celery jobs
license = MIT
author = CERN
author_email = info@inveniosoftware.org
platforms = any
url = https://github.com/inveniosoftware/invenio-jobs
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
invenio-administration>=5.0.0,<6.0.0
invenio-base>=2.3.0,<3.0.0
invenio-celery>=2.0.0,<3.0.0
invenio-i18n>=3.0.0,<4.0.0
invenio-records-resources>=9.0.0,<10.0.0
invenio-users-resources>=10.0.0,<11.0.0
[options.extras_require]
tests =
invenio-app>=3.0.0,<4.0.0
invenio-db[postgresql,mysql]>=2.2.0,<3.0.0
pytest-invenio>=4.0.0,<5.0.0
pytest-black>=0.6.0
sphinx>=4.5.0
elasticsearch7 =
invenio-search[elasticsearch7]>=3.0.0,<4.0.0
opensearch1 =
invenio-search[opensearch1]>=3.0.0,<4.0.0
opensearch2 =
invenio-search[opensearch2]>=3.0.0,<4.0.0
[options.entry_points]
flask.commands =
jobs = invenio_jobs.cli:jobs
invenio_base.apps =
jobs = invenio_jobs:InvenioJobs
invenio_logging_jobs = invenio_jobs.logging.jobs:InvenioLoggingJobs
invenio_base.api_apps =
jobs = invenio_jobs:InvenioJobs
invenio_logging_jobs = invenio_jobs.logging.jobs:InvenioLoggingJobs
invenio_base.blueprints =
jobs = invenio_jobs.views:blueprint
invenio_base.api_blueprints =
jobs = invenio_jobs.views:create_jobs_bp
runs = invenio_jobs.views:create_runs_bp
tasks = invenio_jobs.views:create_tasks_bp
job_logs = invenio_jobs.views:create_job_logs_bp
invenio_base.finalize_app =
jobs = invenio_jobs.ext:finalize_app
invenio_base.api_finalize_app =
jobs = invenio_jobs.ext:finalize_app
invenio_i18n.translations =
messages = invenio_jobs
invenio_db.models =
jobs = invenio_jobs.models
invenio_db.alembic =
jobs = invenio_jobs:alembic
invenio_assets.webpack =
jobs = invenio_jobs.webpack:administration
invenio_administration.views =
jobs_list = invenio_jobs.administration.jobs:JobsListView
jobs_details = invenio_jobs.administration.jobs:JobsDetailsView
run_details = invenio_jobs.administration.runs:RunsDetailsView
jobs_edit = invenio_jobs.administration.jobs:JobsEditView
jobs_create= invenio_jobs.administration.jobs:JobsCreateView
invenio_celery.tasks =
jobs = invenio_jobs.tasks
logging = invenio_jobs.logging.tasks
invenio_celery.signals =
invenio_logging = invenio_jobs.logging.celery_signals
invenio_search.index_templates =
jobs = invenio_jobs.logging.index_templates
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401,D403
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_jobs --cov-report=term-missing
testpaths = docs tests invenio_jobs
[compile_catalog]
directory = invenio_jobs/translations/
use_fuzzy = True
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = info@inveniosoftware.org
mapping_file = babel.ini
output_file = invenio_jobs/translations/messages.pot
add_comments = NOTE
[init_catalog]
input_file = invenio_jobs/translations/messages.pot
output_dir = invenio_jobs/translations/
[update_catalog]
input_file = invenio_jobs/translations/messages.pot
output_dir = invenio_jobs/translations/