From 055cab0703c9d62d150629cbbf4c4f7743ba034f Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Tue, 23 Jan 2018 08:40:41 -0500 Subject: [PATCH] setup: brightfunds depends on xlrd. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2afb12d..99470f9 100755 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ REQUIREMENTS = { 'install_requires': ['babel'], 'setup_requires': ['pytest-runner'], 'extras_require': { + 'brightfunds': ['xlrd'], 'nbpy2017': ['beautifulsoup4', 'html5lib'], }, } @@ -25,7 +26,7 @@ REQUIREMENTS['tests_require'] = [ setup( name='import2ledger', description="Import different sources of financial data to Ledger", - version='0.2', + version='0.3', author='Brett Smith', author_email='brettcsmith@brettcsmith.org', license='GNU AGPLv3+',