-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.cfg
65 lines (57 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
63
64
65
# -*- coding: utf-8 -*-
#
# This file is part of Flask-IIIF
# Copyright (C) 2014 CERN.
# Copyright (C) 2022-2024 Graz University of Technology.
#
# Flask-IIIF is free software; you can redistribute it and/or modify
# it under the terms of the Revised BSD License; see LICENSE file for
# more details.
[metadata]
name = flask-iiif
version = attr: flask_iiif.__version__
description = "Flask-IIIF extension provides easy IIIF API standard integration."
long_description = file: README.rst, CHANGES.rst
license = BSD
author = Invenio collaboration
author_email = [email protected]
platforms = any
url = http://github.com/inveniosoftware/flask-iiif/
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
cachelib>=0.1
Flask>=2.0
Flask-RESTful>=0.3.7
pillow>=7.0
six>=1.7.2
# remove after flask pin in pytest has been removed
werkzeug<3.1.0
[options.extras_require]
tests =
pytest-black-ng>=0.4.0
flask-testing>=0.6.0
pytest-invenio>=1.4.0
sphinx>=4.5
redis>=3.5
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=flask_iiif --cov-report=term-missing
testpaths = tests flask_iiif
filterwarnings = ignore::pytest.PytestDeprecationWarning