-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
62 lines (53 loc) · 1.52 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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2024 CERN.
#
# Invenio-CERN-sync 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-cern-sync
version = attr: invenio_cern_sync.__version__
description = Integrates CERN databases and login with Invenio
long_description = file: README.md, CHANGES.md
keywords = invenio-cern-sync
license = MIT
author = CERN
author_email = info@inveniosoftware.org
platforms = any
url = https://github.com/cerndocumentserver/invenio-cern-sync
classifiers =
Development Status :: 1 - Planning
[options]
include_package_data = True
packages = find:
python_requires = >=3.9
zip_safe = False
install_requires =
invenio-accounts>=5.0.0,<6.0.0
invenio-celery>=1.0.0,<2.0.0
invenio-oauthclient>=4.0.0,<5.0.0
invenio-userprofiles>=3.0.0,<4.0.0
[options.extras_require]
tests =
invenio-app>=1.3.4,<2.0.0
invenio-db[postgresql,mysql]>=1.1.0,<2.0.0
pytest-invenio>=2.1.0,<3.0.0
pytest-black-ng>=0.4.0
opensearch2 =
invenio-search[opensearch2]>=2.1.0,<3.0.0
ldap =
python-ldap>=3.4.0
[options.entry_points]
invenio_base.apps =
invenio_cern_sync = invenio_cern_sync:InvenioCERNSync
invenio_celery.tasks =
invenio_cern_sync = invenio_cern_sync.tasks
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401,D403
[isort]
profile=black
[tool:pytest]
addopts = --black --isort --pydocstyle --cov=invenio_cern_sync --cov-report=term-missing
testpaths = tests invenio_cern_sync