diff --git a/luxwidget/_frontend.py b/luxwidget/_frontend.py index 9acdd74..1419756 100644 --- a/luxwidget/_frontend.py +++ b/luxwidget/_frontend.py @@ -1,10 +1,10 @@ #!/usr/bin/env python # coding: utf-8 - +from ._version import __version__ """ Information about the frontend package of the widgets. """ module_name = "luxwidget" -module_version = "^0.0.1" +module_version = __version__ diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..46c5b3c --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[metadata] +description-file = README.md +license_file = LICENSE \ No newline at end of file diff --git a/src/widget.tsx b/src/widget.tsx index 6f40288..0191b63 100644 --- a/src/widget.tsx +++ b/src/widget.tsx @@ -25,7 +25,7 @@ import '../css/widget.css' import * as React from "react"; import * as ReactDOM from "react-dom"; import _ from 'lodash'; -import {Tabs,Tab, Alert} from 'react-bootstrap'; +import {Tabs,Tab} from 'react-bootstrap'; import ChartGalleryComponent from './chartGallery'; import CurrentVisComponent from './currentVis'; import {dispatchLogEvent} from './utils';