Initial iteration
[ckanext-ga-report.git] / setup.py
blob:a/setup.py -> blob:b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -20,17 +20,19 @@
 	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
 	""",
 )