--- a/setup.py +++ b/setup.py @@ -20,17 +20,20 @@ include_package_data=True, zip_safe=False, install_requires=[ - 'gdata' + 'gdata', + 'google-api-python-client' ], entry_points=\ """ [ckan.plugins] - # Add plugins here, eg - ga-report=ckanext.ga_report.plugin:GaReportPlugin + # Add plugins here + ga-report=ckanext.ga_report.plugin:GAReportPlugin [paste.paster_command] loadanalytics = ckanext.ga_report.command:LoadAnalytics initdb = ckanext.ga_report.command:InitDB + getauthtoken = ckanext.ga_report.command:GetAuthToken + fixtimeperiods = ckanext.ga_report.command:FixTimePeriods """, )