[boobank-indicator] Add a gtk appindicator for boobank

This commit is contained in:
Bezleputh 2015-03-31 10:10:29 +02:00 committed by Romain Bignon
commit 85dafe36b9
12 changed files with 283 additions and 0 deletions

View file

@ -0,0 +1,20 @@
from setuptools import setup
from setuptools import find_packages
setup(name='boobank_indicator',
version='0.0.1',
description='show your bank accounts in your System Tray',
long_description='boobank_indicator will show you bank accounts and associated transactions in your system tray. Your bank accounts should be configured in boobank',
keywords='weboob boobank tray icon',
url='http://weboob.org/',
license='GNU AGPL 3',
author='Bezleputh',
author_email='bezleputh@gmail.com',
packages=find_packages(),
package_data={
'boobank_indicator.data': ['indicator-boobank.png', 'green_light.png', 'red_light.png']
},
entry_points={
'console_scripts': ['boobank_indicator = boobank_indicator.boobank_indicator:main'],
},
zip_safe=False)