-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.cfg
108 lines (94 loc) · 2.94 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
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2015-2018 CERN.
# Copyright (C) 2022-2024 Graz University of Technology.
#
# Invenio 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-pidstore
version = attr: invenio_pidstore.__version__
description = "Invenio module that stores and registers persistent identifiers."
long_description = file: README.rst, CHANGES.rst
keywords = invenio identifier DOI
license = MIT
author = CERN
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/invenio-pidstore
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
base32-lib>=1.0.1
importlib_metadata>=4.4
importlib_resources>=5.0
invenio-base>=2.0.0,<3.0.0
invenio-i18n>=3.0.0,<4.0.0
[options.extras_require]
tests =
pytest-black-ng>=0.4.0
Flask-Menu>=2.0.0,<3.0.0
invenio-admin>=1.2.0,<2.0.0
invenio-access>=4.0.0,<5.0.0
invenio-accounts>=6.0.0,<7.0.0
mock>=3.0.0
pytest-invenio>=3.0.0,<4.0.0
SQLAlchemy-Continuum>=1.3.11
datacite>=0.1.0
Sphinx>=4.5.0
invenio-db[mysql,postgresql,versioning]>=2.0.0,<3.0.0
[options.entry_points]
invenio_db.alembic =
invenio_pidstore = invenio_pidstore:alembic
invenio_db.models =
invenio_pidstore = invenio_pidstore.models
invenio_base.apps =
invenio_pidstore = invenio_pidstore:InvenioPIDStore
invenio_base.api_apps =
invenio_pidstore = invenio_pidstore:InvenioPIDStore
invenio_pidstore.minters =
recid = invenio_pidstore.minters:recid_minter
recid_v2 = invenio_pidstore.minters:recid_minter_v2
invenio_pidstore.fetchers =
recid = invenio_pidstore.fetchers:recid_fetcher
recid_v2 = invenio_pidstore.fetchers:recid_fetcher_v2
invenio_admin.views =
invenio_pidstore_pid = invenio_pidstore.admin:pid_adminview
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401
[compile_catalog]
directory = invenio_pidstore/translations/
use-fuzzy = True
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = invenio_pidstore/translations/messages.pot
add-comments = NOTE
[init_catalog]
input-file = invenio_pidstore/translations/messages.pot
output-dir = invenio_pidstore/translations/
[update_catalog]
input-file = invenio_pidstore/translations/messages.pot
output-dir = invenio_pidstore/translations/
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
doctest_optionflags = DONT_ACCEPT_TRUE_FOR_1 ELLIPSIS IGNORE_EXCEPTION_DETAIL
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_pidstore --cov-report=term-missing
testpaths = docs tests invenio_pidstore