-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.cfg
More file actions
140 lines (131 loc) · 5.01 KB
/
setup.cfg
File metadata and controls
140 lines (131 loc) · 5.01 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
134
135
136
137
138
139
140
# -*- coding: utf-8 -*-
#
# Copyright (C) 2019-2023 CERN.
#
# CDS-ILS 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 = cds-ils
version = attr: cds_ils.__version__
description = CDS-ILS.
long_description = file: README.rst, CHANGES.rst
keywords = CDS-ILS InvenioILS Invenio
license = MIT
author = CERN
author_email =
platforms = any
url = https://github.com/CERNDocumentServer/cds-ils
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.6
zip_safe = False
install_requires =
fuzzywuzzy>=0.18.0
python-ldap>=3.4.0,<3.5.0
invenio-app-ils[lorem,opensearch2]>=7.0.0,<8.0.0
sentry-sdk>=1.45,<2.0.0
# migrator deps
cds-dojson==0.13.0
lxml>=4.6.5
[options.extras_require]
tests =
mock>=2.0.0
pydocstyle<6.2.0
pytest-black>=0.3.0
pytest-invenio>=3.0.0,<4.0.0
pytest-mock>=1.6.0
docker-services-cli>=0.6.1
[options.entry_points]
console_scripts =
cds-ils = invenio_app.cli:cli
flask.commands =
user-testing = cds_ils.cli:user_testing
ldap-users = cds_ils.ldap.cli:ldap_users
migration = cds_ils.migrator.cli:migration
importer = cds_ils.importer.cli:importer
covers = cds_ils.cli:covers
maintenance = cds_ils.cli:maintenance
invenio_db.models =
cds_ils_ldap = cds_ils.ldap.models
cds_ils_importer = cds_ils.importer.models
invenio_base.api_apps =
cds_ils = cds_ils.ext:CdsIls
invenio_base.apps =
cds_ils_app = cds_ils.ext:CdsIls
invenio_base.api_blueprints =
cds_ils_patron_loans = cds_ils.patrons.views:create_patron_loans_blueprint
cds_ils_legacy = cds_ils.literature.views:legacy_blueprint
cds_ils_logout = cds_ils.authentication.views:cern_oauth_blueprint
cds_ils_importer = cds_ils.importer.views:create_importer_blueprint
invenio_config.module =
zz_cds_ils = cds_ils.config
invenio_celery.tasks =
cds_ils_tasks = cds_ils.literature.tasks
cds_ils_ldap_tasks = cds_ils.ldap.tasks
cds_ils_mail_tasks = cds_ils.mail.tasks
cds_ils_importer_tasks = cds_ils.importer.tasks
invenio_access.actions =
retrieve_patron_loans_access_action = cds_ils.patrons.permissions:retrieve_patron_loans_access_action
document_importer_access_action = cds_ils.patrons.permissions:document_importer_access_action
cds_ils.importers =
cds = cds_ils.importer.providers.cds.importer:CDSImporter
snv = cds_ils.importer.providers.snv.importer:SNVImporter
springer = cds_ils.importer.providers.springer.importer:SpringerImporter
ebl = cds_ils.importer.providers.ebl.importer:EBLImporter
safari = cds_ils.importer.providers.safari.importer:SafariImporter
cds_ils.document_importers =
cds = cds_ils.importer.providers.cds.document_importer:CDSDocumentImporter
cds_ils.importer.base =
base = cds_ils.importer.providers.rules.base
cds_ils.importer.models =
cds_book = cds_ils.importer.providers.cds.models.document:model
cds_standard = cds_ils.importer.providers.cds.models.standard:model
snv_standard = cds_ils.importer.providers.snv.models.standard:model
springer_document = cds_ils.importer.providers.springer.springer:model
ebl_document = cds_ils.importer.providers.ebl.ebl:model
safari_document = cds_ils.importer.providers.safari.safari:model
cds_ils.migrator.models =
cds_book = cds_ils.importer.providers.cds.models.document:model
cds_standard = cds_ils.importer.providers.cds.models.standard:model
cds_ils.migrator.serial_model =
ils_serial = cds_ils.importer.providers.cds.models.serial:model
cds_ils.migrator.journal_model =
ils_journal = cds_ils.importer.providers.cds.models.journal:model
cds_ils.migrator.multipart_model =
ils_multipart = cds_ils.importer.providers.cds.models.multipart:model
cds_ils.importer.cds.base =
base = cds_ils.importer.providers.cds.rules.base
cds_ils.importer.cds.document =
base = cds_ils.importer.providers.cds.rules.base
standard = cds_ils.importer.providers.cds.rules.standard
cds_ils.importer.document =
cds = cds_ils.importer.providers.cds.rules.base
snv = cds_ils.importer.providers.cds.rules.base
springer = cds_ils.importer.providers.springer.rules.document
ebl = cds_ils.importer.providers.ebl.rules.document
safari = cds_ils.importer.providers.safari.rules.document
cds_ils.importer.series =
serial = cds_ils.importer.providers.cds.rules.serial
multipart = cds_ils.importer.providers.cds.rules.multipart
journal = cds_ils.importer.providers.cds.rules.journal
cds_ils.migrator.base =
base = cds_ils.importer.providers.cds.rules.base
invenio_pidstore.minters =
legacy = cds_ils.minters:legacy_recid_minter
cds_ils.importer.import_json_transformers =
cds = cds_ils.importer.json.rdm.transform:RDMToILSTransform
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --cov=cds_ils --cov-report=term-missing
testpaths = tests cds_ils