Fix collision with datasette-cluster-map

It was not possible to install both plugins at the same time.
This commit is contained in:
Simon Willison 2018-06-28 09:43:10 -05:00
commit f19ed314d5

View file

@ -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={