diff --git a/weboob/capabilities/wealth.py b/weboob/capabilities/wealth.py new file mode 100644 index 0000000000000000000000000000000000000000..faafcf592b82da73df7f484b81e4816759753338 --- /dev/null +++ b/weboob/capabilities/wealth.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- + +# Copyright(C) 2020 Quentin Defenouillere +# +# This file is part of weboob. +# +# weboob is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# weboob 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with weboob. If not, see . + +from __future__ import unicode_literals + +# Temporary imports before moving these classes in this file +from weboob.capabilities.bank import ( + PerVersion, PerProviderType, Per, Investment, Pocket, + MarketOrderType, MarketOrderDirection, MarketOrder, + CapBankWealth, +) + +__all__ = [ + 'PerVersion', 'PerProviderType', 'Per', 'Investment', 'Pocket', + 'MarketOrderType', 'MarketOrderDirection', 'MarketOrder', + 'CapBankWealth', +]