-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.cfg
151 lines (137 loc) · 4.37 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2023 CERN.
# Copyright (C) 2023-2024 Graz University of Technology.
#
# Invenio is free software; you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307, USA.
#
# In applying this license, CERN does not
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.
[metadata]
name = invenio-github
version = attr: invenio_github.__version__
description = "Invenio module that adds GitHub integration to the platform."
long_description = file: README.rst, CHANGES.rst
keywords = invenio github
license = MIT
author = CERN
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/invenio-github
classifiers =
Development Status :: 5 - Production/Stable
[options]
packages = find:
zip_safe = False
include_package_data = True
python_requires = >= 3.7
install_requires =
Flask-Menu>=2.0.0,<3.0.0
PyYAML>=5.4.1
email-validator>=1.0.5
github3.py>=4.0.1,<5.0.0
humanize>=0.5.1
invenio-assets>=4.0.0,<5.0.0
invenio-accounts>=6.0.0,<7.0.0
invenio-celery>=2.0.0,<3.0.0
invenio-db>=2.0.0,<3.0.0
invenio-formatter>=3.0.0,<4.0.0
invenio-i18n>=3.0.0,<4.0.0
invenio-oauth2server>=3.0.0,<4.0.0
invenio-oauthclient>=5.0.0,<6.0.0
invenio-pidstore>=2.0.0,<3.0.0
invenio-records-rest>=3.0.0,<4.0.0
invenio-webhooks>=1.0.0,<2.0.0
invenio-records-resources>=7.0.0,<8.0.0
mistune>=0.7.2
six>=1.12.0
uritemplate>=3.0.1
[options.extras_require]
tests =
httpretty>=0.8.14
invenio-app>=2.0.0,<3.0.0
invenio-db[postgresql,mysql]>=2.0.0,<3.0.0
invenio-files-rest>=3.0.0,<4.0.0
isort>=4.2.2
mock>=2.0.0
pluggy>=0.12,<1.0
pytest-black-ng>=0.4.0
pytest-invenio>=3.0.0,<4.0.0
pytest-mock>=2.0.0
sphinx>=4.5.0
elasticsearch7 =
invenio-search[elasticsearch7]>=3.0.0,<4.0.0
opensearch1 =
invenio-search[opensearch1]>=3.0.0,<4.0.0
opensearch2 =
invenio-search[opensearch2]>=3.0.0,<4.0.0
[options.entry_points]
invenio_base.apps =
invenio_github = invenio_github:InvenioGitHub
invenio_base.api_apps =
invenio_github = invenio_github:InvenioGitHub
invenio_base.blueprints =
invenio_github_badge = invenio_github.views.badge:blueprint
invenio_github_github = invenio_github.views.github:create_ui_blueprint
invenio_base.api_blueprints =
invenio_github = invenio_github.views.github:create_api_blueprint
invenio_base.finalize_app =
invenio_github = invenio_github.ext:finalize_app
invenio_celery.tasks =
invenio_github = invenio_github.tasks
invenio_db.alembic =
invenio_github = invenio_github:alembic
invenio_db.models =
invenio_github = invenio_github.models
invenio_i18n.translations =
messages = invenio_github
invenio_webhooks.receivers =
github = invenio_github.receivers:GitHubReceiver
invenio_assets.webpack =
invenio_github = invenio_github.webpack:theme
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[compile_catalog]
directory = invenio_github/translations/
use-fuzzy = True
[extract_messages]
copyright_holder = CERN
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = invenio_github/translations/messages.pot
add-comments = NOTE
[init_catalog]
input-file = invenio_github/translations/messages.pot
output-dir = invenio_github/translations/
[update_catalog]
input-file = invenio_github/translations/messages.pot
output-dir = invenio_github/translations/
[pydocstyle]
add_ignore = D401,D403
[isort]
profile=black
[check-manifest]
ignore =
*-requirements.txt
[tool:pytest]
addopts = --black --isort --pydocstyle --ignore=docs --cov=invenio_github --cov-report=term-missing
testpaths = tests invenio_github