-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (30 loc) · 940 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
26
27
28
29
30
31
32
33
34
35
[metadata]
name = indico-plugin-payment-mollie
version = 3.2.1
description = Mollie payments for Indico event registration fees
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
url = https://github.com/indico/indico-plugins
license = MIT
author = Evert Rol
author_email = [email protected]
classifiers =
Environment :: Plugins
Environment :: Web Environment
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
packages = find:
zip_safe = false
include_package_data = true
python_requires = >=3.9.0, <3.12
install_requires =
indico>=3.2
iso4217==1.6.20180829
[options.entry_points]
indico.plugins =
payment_mollie = indico_payment_mollie.plugin:MolliePaymentPlugin
[pydocstyle]
ignore = D100,D101,D102,D103,D104,D105,D107,D203,D213