[pricelist] Install pillow

This commit is contained in:
Ferdinand Thiessen 2021-03-25 01:20:26 +01:00
parent 05aba1161b
commit 4ffa5e0e6e
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ setup(
"werkzeug",
mysql_driver,
],
extras_require={"ldap": ["flask_ldapconn", "ldap3"], "test": ["pytest", "coverage"]},
extras_require={"ldap": ["flask_ldapconn", "ldap3"], "pricelist": ["pillow"],"test": ["pytest", "coverage"]},
entry_points={
"flaschengeist.plugin": [
# Authentication providers
@ -36,7 +36,7 @@ setup(
"balance = flaschengeist.plugins.balance:BalancePlugin",
"events = flaschengeist.plugins.events:EventPlugin",
"mail = flaschengeist.plugins.message_mail:MailMessagePlugin",
"pricelist = flaschengeist.plugins.pricelist:PriceListPlugin",
"pricelist = flaschengeist.plugins.pricelist:PriceListPlugin [pricelist]",
],
},
)