-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
87 lines (68 loc) · 2.21 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
80
81
82
83
84
85
86
87
# -*- coding: utf-8 -*-
#
# Copyright (C) 2022 National library of technology, Prague.
#
# OARepo-relations 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 = oarepo-global-search
version = 1.0.31
description = "A model builder plugin for global search"
long_description = file: README.md
long_description_content_type = text/markdown
keywords = invenio relations model builder
license = MIT
author = Alzbeta Pokorna
author_email = [email protected]
platforms = any
url = https://github.com/oarepo/oarepo-global-search
classifiers =
Development Status :: 3 - Alpha
[options]
packages = find:
include_package_data = True
python_requires = >=3.10
zip_safe = False
install_requires =
oarepo-ui
[options.package_data]
* = *.json, *.rst, *.md, *.json5, *.jinja2, *.po, *.mo, *.pot, *.js, *.jsx, *.less, *.jinja, *.overrides, *.variables
[options.extras_require]
tests =
pytest
black
autoflake
isort
[options.entry_points]
invenio_base.apps =
oarepo_global_search = oarepo_global_search.ext:OARepoGlobalSearch
invenio_base.api_apps =
oarepo_global_search_api = oarepo_global_search.ext:OARepoGlobalSearch
invenio_base.api_blueprints =
oarepo_global_search_api = oarepo_global_search.views.api:create_global_search
invenio_base.blueprints =
oarepo_global_search = oarepo_global_search.views.app:create_app_blueprint
ui_oarepo_global_search = oarepo_global_search.ui.config:create_blueprint
invenio_assets.webpack =
oarepo_global_search_records_ui_theme = oarepo_global_search.ui.oarepo_global_search.webpack:theme
oarepo_global_search_i18n = oarepo_global_search.i18n.webpack:theme
invenio_i18n.translations =
oarepo_global_search_messages = oarepo_global_search.i18n
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --doctest-glob="*.rst" --doctest-modules
; addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=oarepo_relations --cov-report=term-missing
testpaths = tests