20 lines
837 B
Python
20 lines
837 B
Python
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)
|