-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.cfg
76 lines (66 loc) · 1.83 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
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2022-2024 CERN.
#
# 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-base
version = attr: invenio_base.__version__
description = "Base package for building Invenio application factories."
long_description = file: README.rst, CHANGES.rst
keywords = invenio
license = MIT
author = CERN
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/invenio-base
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
blinker>=1.4
Flask>=3.0.0
itsdangerous>=2.1.0
MarkupSafe>=0.23
Werkzeug>=3.0.0
watchdog>2.0.0
# importlib needed until Python 3.9 end of life since we're using
# importlib.metadata features from v3.10). Version numbers are aligned with
# Python v3.10 feature set.
importlib-metadata>=4.4
importlib-resources>=5.0
[options.extras_require]
tests =
# necessary because of jws tests
freezegun>=1.5.1
pytest-black-ng>=0.4.0
pytest-invenio>=1.4.2
sphinx>=4.2.0
[options.entry_points]
console_scripts =
inveniomanage = invenio_base.__main__:cli
flask.commands =
instance = invenio_base.cli:instance
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401, D202
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_base --cov-report=term-missing
testpaths = docs tests invenio_base
filterwarnings = ignore::pytest.PytestDeprecationWarning