mirror of
https://github.com/Cian-H/invenio-config-iform.git
synced 2025-12-22 13:11:56 +00:00
101 lines
2.7 KiB
INI
101 lines
2.7 KiB
INI
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2020-2024 Graz University of Technology.
|
|
#
|
|
# invenio-config-iform 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-config-iform
|
|
version = attr: invenio_config_iform.__version__
|
|
description = "Invenio module that adds I-Form configs."
|
|
long_description = file: README.rst, CHANGES.rst
|
|
keywords = invenio config TU-Graz
|
|
license = MIT
|
|
author = "Graz University of Technology"
|
|
author_email = info@tugraz.at
|
|
platforms = any
|
|
url = https://github.com/Cian-H/invenio_config_iform
|
|
classifiers =
|
|
Environment :: Web Environment
|
|
Intended Audience :: Developers
|
|
License :: OSI Approved :: MIT License
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
Programming Language :: Python :: 3.12
|
|
Development Status :: 3 - Alpha
|
|
|
|
[options]
|
|
include_package_data = True
|
|
packages = find:
|
|
python_requires = >=3.12
|
|
zip_safe = False
|
|
install_requires =
|
|
invenio-cache>=1.1.1
|
|
invenio-i18n>=2.0.0
|
|
invenio-rdm-records>=4.0.0
|
|
|
|
[options.extras_require]
|
|
tests =
|
|
invenio-app>=1.5.0
|
|
invenio-search[opensearch2]>=2.1.0,<3.0.0
|
|
pytest-black-ng>=0.4.0
|
|
pytest-invenio>=2.1.0,<3.0.0
|
|
ruff>=0.5.3
|
|
Sphinx>=4.5.0
|
|
|
|
[options.entry_points]
|
|
invenio_base.apps =
|
|
invenio_config_iform = invenio_config_iform:InvenioConfigIform
|
|
invenio_base.blueprints =
|
|
invenio_config_iform = invenio_config_iform.views:ui_blueprint
|
|
invenio_i18n.translations =
|
|
messages = invenio_config_iform
|
|
invenio_config.module =
|
|
invenio_config_iform = invenio_config_iform.config
|
|
invenio_base.finalize_app =
|
|
invenio_config_iform = invenio_config_iform.ext:finalize_app
|
|
|
|
[aliases]
|
|
test = pytest
|
|
|
|
[build_sphinx]
|
|
source-dir = docs/
|
|
build-dir = docs/_build
|
|
all_files = 1
|
|
|
|
[bdist_wheel]
|
|
universal = 1
|
|
|
|
[compile_catalog]
|
|
directory = invenio_config_iform/translations/
|
|
|
|
[extract_messages]
|
|
copyright_holder = Graz University of Technology
|
|
msgid_bugs_address = mojib.wali@tugraz.at
|
|
mapping-file = babel.ini
|
|
output-file = invenio_config_iform/translations/messages.pot
|
|
add-comments = NOTE
|
|
|
|
[init_catalog]
|
|
input-file = invenio_config_iform/translations/messages.pot
|
|
output-dir = invenio_config_iform/translations/
|
|
|
|
[update_catalog]
|
|
input-file = invenio_config_iform/translations/messages.pot
|
|
output-dir = invenio_config_iform/translations/
|
|
|
|
[isort]
|
|
profile=black
|
|
|
|
[check-manifest]
|
|
ignore = *-requirements.txt
|
|
|
|
[tool:pytest]
|
|
addopts = --black --cov=invenio_config_iform --cov-report=term-missing
|
|
testpaths = tests invenio_config_iform
|
|
live_server_scope = module
|