This repository has been archived by the owner on Nov 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated versions to 0.1.0 for first release
- Loading branch information
1 parent
27084fa
commit bf79fda
Showing
4 changed files
with
13 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,23 @@ | ||
package: | ||
name: parambokeh | ||
version: 0.0.1 | ||
version: 0.1.0 | ||
|
||
source: | ||
path: . | ||
|
||
extra: | ||
channels: | ||
- ioam | ||
- conda-forge | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- param >=1.5.1 | ||
run: | ||
- python | ||
- bokeh >=0.12.5 | ||
- param >=1.5.1 | ||
- param | ||
- bokeh | ||
|
||
test: | ||
imports: | ||
- parambokeh | ||
|
||
about: | ||
home: http://github.com/ioam/parambokeh | ||
summary: Generate bokeh widgets from Parameterized objects on bokeh server | ||
license: BSD | ||
home: https://github.com/ioam/parambokeh | ||
summary: ParamBokeh provides an easy way to generate a UI for param based classes in the notebook or on bokeh server. | ||
license: BSD 3-Clause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,14 @@ | |
from distutils.core import setup | ||
|
||
setup_args = {} | ||
install_requires = ['param>=1.5.1', 'bokeh>=0.12.5'] | ||
install_requires = ['param>=1.5.1', 'bokeh>=0.12.6'] | ||
|
||
setup_args.update(dict( | ||
name='parambokeh', | ||
version="0.0.1", | ||
version="0.1.0", | ||
install_requires = install_requires, | ||
url = 'https://github.com/ioam/parambokeh', | ||
description='Generate bokeh widgets from Parameterized objects on bokeh server', | ||
description='ParamBokeh provides an easy way to generate a UI for param based classes in the notebook or on bokeh server.', | ||
long_description=open('README.rst').read() if os.path.isfile('README.rst') else 'Consult README.rst', | ||
author= "IOAM", | ||
author_email= "[email protected]", | ||
|