forked from tu-graz-library/repository-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
72 lines (61 loc) · 1.73 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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2021-2023 Graz University of Technology.
#
# repository-cli 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 = repository-cli
version = attr: repository_cli.__version__
description = "CLI utilities for TU Graz Repository."
long_description = file: README.rst, CHANGES.rst
keywords = invenio repository cli
license = MIT
author = Graz University of Technology
author_email = info@inveniosoftware.org
platforms = any
url = https://github.com/inveniosoftware/repository-cli
classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.9
zip_safe = False
install_requires =
click>=7.1.1
invenio-rdm-records[opensearch2]>=0.39.2
invenio-records-marc21>=0.9
[options.extras_require]
tests =
pytest-invenio>=1.4.0
pytest-black>=0.3.0
invenio-app>=1.3.0
invenio-search[opensearch2]>=2.1.0
invenio-cache>=1.1.1
Sphinx>=4.5
sphinx-click>=2.5.0
[options.entry_points]
flask.commands =
repository = repository_cli.cli:utilities
invenio_base.apps =
repository_cli = repository_cli:RepositoryCli
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401
[tool:isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=repository_cli --cov-report=term-missing
testpaths = tests repository_cli