Skip to content

Commit

Permalink
Astraea-specific tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
metasim committed Oct 16, 2019
1 parent cb90f85 commit 8fb33eb
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 24 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://npm.pkg.github.com/s22s
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ pip install jupyterlab-spark-ui-tab
you need to install both the lab extension as well as the server extension:

```bash
jupyter labextension install @liorbaber/jupyterlab-spark-ui-tab
jupyter serverextension enable --py spark-ui-tab
jupyter labextension install @s22s/jupyterlab-spark-ui-tab
jupyter serverextension enable --py spark_ui_tab
```


Expand All @@ -25,6 +25,7 @@ jupyter serverextension enable --py spark-ui-tab
For a development install (requires npm version 4 or later), do the following in the repository directory:

```bash
python setup.py build bdist_wheel
npm install
npm run build
jupyter labextension link .
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "@liorbaber/jupyterlab-spark-ui-tab",
"version": "0.0.8",
"description": "jupyterlab extension to have spark-ui avi;able as a tab",
"name": "@s22s/jupyterlab-spark-ui-tab",
"version": "0.0.9",
"description": "jupyterlab extension to have spark-ui available as a tab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/Liorba/spark-ui-tab/",
"homepage": "https://github.com/s22s/jupyterlab-spark-ui-tab",
"bugs": {
"url": "https://github.com/Liorba/spark-ui-tab/issues"
"url": "https://github.com/s22s/jupyterlab-spark-ui-tab/issues"
},
"license": "apache-2.0",
"author": "lior baber",
"license": "Apache-2.0",
"author": "Lior Baber",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
Expand All @@ -21,7 +21,10 @@
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Liorba/jupyterlab-spark-ui-tab"
"url": "https://github.com/s22s/jupyterlab-spark-ui-tab"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "tsc",
Expand Down
22 changes: 10 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,23 @@
from setuptools import setup, find_packages
from subprocess import check_output



setup(name='jupyterlab-spark-ui-tab',
version= "0.0.1",
description='Spark UI extension for jupyterlab',
version="0.0.2",
description='Spark UI extension for JupyterLab',
author='Lior Baber',
author_email='liorbaber@gmail.com',
include_package_data=True,
packages=find_packages(),
license="apache-2.0",
url = 'https://github.com/Liorba/jupyterlab-spark-ui-tab',
keywords = ['jupyter', 'extension', 'spark'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
url='https://github.com/s22s/jupyterlab-spark-ui-tab',
keywords=['jupyter', 'extension', 'spark'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
zip_safe=False,
install_requires=[
'bs4' ,
'bs4',
]
)

0 comments on commit 8fb33eb

Please sign in to comment.