forked from mesemus/invenio-drafts-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
95 lines (81 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020-2024 CERN.
# Copyright (C) 2022 Graz University of Technology.
# Copyright (C) 2020 Northwestern University.
# Copyright (C) 2022 Graz University of Technology.
#
# Invenio-Drafts-Resources 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-drafts-resources
version = attr: invenio_drafts_resources.__version__
description = Invenio Drafts Resources module to create REST APIs
long_description = file: README.rst, CHANGES.rst
keywords = invenio records deposit submit versioning drafts
license = MIT
author = CERN
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/Invenio-Drafts-Resources
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
invenio-i18n>=2.0.0,<3.0.0
invenio-records-resources>=5.0.0,<6.0.0
[options.extras_require]
tests =
pytest-black>=0.3.0
pytest-invenio>=2.1.0,<3.0.0
invenio-app>=1.3.1,<2.0.0
Sphinx>=4.5.0
invenio-db[mysql,postgresql]>=1.0.9,<2.0.0
elasticsearch7 =
invenio-search[elasticsearch7]>=2.1.0,<3.0.0
opensearch1 =
invenio-search[opensearch1]>=2.1.0,<3.0.0
opensearch2 =
invenio-search[opensearch2]>=2.1.0,<3.0.0
[options.entry_points]
invenio_i18n.translations =
messages = invenio_drafts_resources
invenio_db.models =
invenio_drafts_resources = invenio_drafts_resources.records.models
invenio_celery.tasks =
invenio_drafts_resources = invenio_drafts_resources.services.records.tasks
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401
[compile_catalog]
directory = invenio_drafts_resources/translations/
use-fuzzy = True
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = invenio_drafts_resources/translations/messages.pot
add-comments = NOTE
[init_catalog]
input-file = invenio_drafts_resources/translations/messages.pot
output-dir = invenio_drafts_resources/translations/
[update_catalog]
input-file = invenio_drafts_resources/translations/messages.pot
output-dir = invenio_drafts_resources/translations/
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_drafts_resources --cov-report=term-missing
testpaths = docs tests invenio_drafts_resources