Skip to content

Commit

Permalink
add setup.cfg, update _frontend version
Browse files Browse the repository at this point in the history
  • Loading branch information
dorisjlee committed Oct 9, 2020
1 parent c46a541 commit 0185507
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions luxwidget/_frontend.py
Original file line number Diff line number Diff line change
@@ -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__
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[metadata]
description-file = README.md
license_file = LICENSE
2 changes: 1 addition & 1 deletion src/widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 0185507

Please sign in to comment.