-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
25 lines (25 loc) · 881 Bytes
/
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
[metadata]
name = indico-plugin-checkin-webhook
description = Print plugin that triggers a webhook on checkin
url = https://github.com/
license = https://www.gnu.org/licenses/gpl-3.0.txt
author = Indico Team@MLZ
author_email = [email protected]
classifiers =
Environment :: Plugins', 'Environment :: Web Environment
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 2.9
[options]
packages=find:
zip_safe=False
include_package_data=True
use_scm_version=True
setup_requires=
setuptools_scm
install_requires=
indico>=3.1
[options.entry_points]
indico.plugins =
checkin_webhook = indico_checkin_webhook.plugin:CheckinWebhookPlugin
[pydocstyle]
ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213