-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
79 lines (70 loc) · 2.23 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
77
78
79
# -*- coding: utf-8 -*-
#
# Copyright (C) 2021-2024 Graz University of Technology.
#
# invenio-workflows-tugraz 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-workflows-tugraz
version = attr: invenio_workflows_tugraz.__version__
description = "Package serves as a place for the workflows of the repository of the TU Graz."
long_description = file: README.rst, CHANGES.rst
keywords = invenio workflows TUGraz
license = MIT
author = Graz University of Technology
author_email = [email protected]
platforms = any
url = https://github.com/tu-graz-library/invenio-workflows-tugraz
classifiers =
Programming Language :: Python :: 3.12
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.12
zip_safe = False
install_requires =
[options.extras_require]
tests =
invenio-alma>=0.7.1
invenio-app>=1.5.0
invenio-campusonline>=0.1.1
invenio-config-tugraz>=0.4.0
invenio-moodle>=1.0.0
invenio-pure>=0.1.1
invenio-records-lom>=0.13.0
invenio-search[opensearch2]>=2.1.0
pytest-black-ng>=0.4.0
pytest-invenio>=1.4.0
ruff>=0.4.10
sphinx>=4.5
[options.entry_points]
flask.commands =
workflows = invenio_workflows_tugraz.cli:workflows
invenio_base.apps =
invenio_workflows_tugraz = invenio_workflows_tugraz:InvenioWorkflowsTugraz
invenio_base.blueprints =
invenio_workflows_tugraz_theses = invenio_workflows_tugraz.theses:create_blueprint
invenio_celery.tasks =
invenio_workflows_tugraz_theses = invenio_workflows_tugraz.theses.tasks
invenio_db.alembic =
invenio_workflows_tugraz_theses = invenio_workflows_tugraz.theses:alembic
invenio_db.models =
invenio_workflows_tugraz_theses = invenio_workflows_tugraz.theses.models
invenio_i18n.translations =
messages = invenio_workflows_tugraz
[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 --doctest-glob="*.rst" --doctest-modules --cov=invenio_workflows_tugraz --cov-report=term-missing
testpaths = docs tests invenio_workflows_tugraz