forked from inveniosoftware/invenio-app-rdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
127 lines (115 loc) · 3.71 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
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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2019-2022 CERN.
# Copyright (C) 2019-2022 Northwestern University.
#
# Invenio App RDM 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-app-rdm
version = attr: invenio_app_rdm.__version__
description = Invenio Research Data Management.
long_description = file: README.rst, CHANGES.rst
keywords = invenio-app-rdm Invenio
license = MIT
author = CERN
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/invenio-app-rdm
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.6
zip_safe = False
install_requires =
# Invenio core modules
invenio-app>=1.3.4,<1.4.0
invenio-base>=1.2.11,<1.3.0
invenio-cache>=1.1.1,<1.2.0
invenio-celery>=1.2.4,<1.3.0
invenio-config>=1.0.3,<1.1.0
invenio-i18n>=1.3.1,<1.4.0
invenio-db[postgresql,mysql,versioning]>=1.0.14,<1.1.0
# Invenio base bundle
invenio-admin>=1.3.2,<1.4.0
invenio-assets>=1.2.7,<1.3.0
invenio-formatter>=1.1.3,<1.2.0
invenio-logging[sentry-sdk]>=1.3.2,<1.4.0
invenio-mail>=1.0.2,<1.1.0
invenio-rest>=1.2.8,<1.3.0
invenio-theme>=1.3.23,<1.4.0
# Invenio auth bundle
invenio-access>=1.4.4,<1.5.0
invenio-accounts>=2.0.0,<2.1.0
invenio-oauth2server>=1.3.5,<1.4.0
invenio-oauthclient>=2.0.0.dev0,<2.1.0
invenio-userprofiles>=2.0.0,<2.1.0
# Invenio metdata bundle
invenio-indexer>=1.2.7,<1.3.0
invenio-jsonschemas>=1.1.4,<1.2.0
invenio-oaiserver>=1.4.2,<1.5.0
invenio-pidstore>=1.2.3,<1.3.0
invenio-records-rest>=1.9.0,<1.10.0
invenio-records-ui>=1.2.0,<1.3.0
invenio-records>=1.7.3,<1.8.0
invenio-search-ui>=2.1.1,<2.2.0
# Invenio files bundle
invenio-files-rest>=1.3.3,<1.4.0
invenio-previewer>=1.3.6,<1.4.0
invenio-records-files>=1.2.1,<1.3.0
# Invenio-App-RDM
invenio-rdm-records>=0.35.16,<0.36.0
CairoSVG>=2.5.2,<3.0.0
# Werkzeug - due to https://github.com/pallets/werkzeug/issues/2397
Werkzeug>=1.0,!=2.1.0,!=2.1.1
[options.extras_require]
tests =
pytest-invenio~=1.4.7
Sphinx>=4.2.0
elasticsearch6 =
invenio-search[elasticsearch6]>=1.4.2,<1.5.0
elasticsearch7 =
invenio-search[elasticsearch7]>=1.4.2,<1.5.0
s3 =
invenio-s3~=1.0.5
[options.entry_points]
invenio_base.blueprints =
invenio_app_rdm_records = invenio_app_rdm.records_ui.views:create_blueprint
invenio_app_rdm = invenio_app_rdm.theme.views:create_blueprint
invenio_app_rdm_requests = invenio_app_rdm.requests_ui.views:create_ui_blueprint
invenio_app_rdm_communities = invenio_app_rdm.communities_ui.views:create_ui_blueprint
invenio_app_rdm_users = invenio_app_rdm.users_ui.views:create_ui_blueprint
invenio_config.module =
invenio_app_rdm = invenio_app_rdm.config
invenio_i18n.translations =
messages = invenio_app_rdm
invenio_assets.webpack =
invenio_app_rdm_theme = invenio_app_rdm.theme.webpack:theme
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[compile_catalog]
directory = invenio_app_rdm/translations/
use-fuzzy = True
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = invenio_app_rdm/translations/messages.pot
add-comments = NOTE
[init_catalog]
input-file = invenio_app_rdm/translations/messages.pot
output-dir = invenio_app_rdm/translations/
[update_catalog]
input-file = invenio_app_rdm/translations/messages.pot
output-dir = invenio_app_rdm/translations/
[pycodestyle]
exclude = docs/conf.py
max-line-length = 82
[pydocstyle]
add_ignore = D401