[boobank-indicator] Add a gtk appindicator for boobank
This commit is contained in:
parent
fa01fff348
commit
85dafe36b9
12 changed files with 283 additions and 0 deletions
20
contrib/boobank_indicator/setup.py
Normal file
20
contrib/boobank_indicator/setup.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue