Correct the entry point file name

The entry point MAIN referenced a file that we don't package,
the minified file.

Change-Id: I8fe2bd617f42fa5e55edcf4ee8a2b01e6a36c356
This commit is contained in:
Richard Jones 2016-08-23 15:37:58 +10:00
parent a5ace69bc0
commit 9a6a776431
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
VERSION = '1.4.13' # version of the packaged files, please use the upstream
# version number
BUILD = '0' # our package build number, so we can release new builds
BUILD = '1' # our package build number, so we can release new builds
# with fixes for xstatic stuff.
PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi
@ -44,7 +44,7 @@ BASE_DIR = join(dirname(__file__), 'data')
# location of the Javascript file that's the entry point for this package, if
# one exists, relative to BASE_DIR
MAIN='smart-table.min.js'
MAIN='smart-table.js'
LOCATIONS = {
# CDN locations (if no public CDN exists, use an empty dict)