From f19ed314d51cab3fb98b51743159fc8301ec9820 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 28 Jun 2018 09:43:10 -0500 Subject: [PATCH] Fix collision with datasette-cluster-map It was not possible to install both plugins at the same time. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1d573b4..cfd2919 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from subprocess import check_output from wheel.bdist_wheel import bdist_wheel import os -VERSION = '0.1' +VERSION = '0.2' ROOT = os.path.dirname(os.path.abspath(__file__)) @@ -49,7 +49,7 @@ setup( packages=['datasette_vega'], entry_points={ 'datasette': [ - 'cluster_map = datasette_vega' + 'vega = datasette_vega' ], }, package_data={