Skip to content

Commit 0279923

Browse files
committed
Add long description for package and readme badges
1 parent 5d285cf commit 0279923

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# MATLAB Integration for Jupyter
2+
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/mathworks/jupyter-matlab-proxy/MATLAB%20Jupyter%20Integration?logo=github)](https://github.com/mathworks/jupyter-matlab-proxy/actions)
3+
[![PyPI badge](https://img.shields.io/pypi/v/jupyter-matlab-proxy.svg?logo=pypi)](https://pypi.python.org/pypi/jupyter-matlab-proxy)
24

35
The `jupyter-matlab-proxy` Python® package allows you to integrate MATLAB® with Jupyter®. The MATLAB integration for Jupyter enables you to open a MATLAB desktop in a web browser tab, directly from your Jupyter environment. This is not a kernel integration.
46

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Copyright 2020-2021 The MathWorks, Inc.
2-
3-
import json
42
import os
5-
from setuptools.command.build_py import build_py
6-
from setuptools.command.sdist import sdist
73
from setuptools.command.install import install
84
import setuptools
95
from pathlib import Path
@@ -49,14 +45,19 @@ def run(self):
4945
"aioresponses",
5046
]
5147

48+
HERE = Path(__file__).parent.resolve()
49+
long_description = (HERE / "README.md").read_text()
50+
5251
setuptools.setup(
5352
name="jupyter-matlab-proxy",
54-
version="0.3.0",
53+
version="0.3.1",
5554
url="https://github.com/mathworks/jupyter-matlab-proxy",
5655
author="The MathWorks, Inc.",
5756
author_email="[email protected]",
5857
license="MATHWORKS CLOUD REFERENCE ARCHITECTURE LICENSE",
5958
description="Jupyter extension to proxy MATLAB JavaScript Desktop",
59+
long_description=long_description,
60+
long_description_content_type="text/markdown",
6061
packages=setuptools.find_packages(exclude=["devel", "tests"]),
6162
keywords=["Jupyter"],
6263
classifiers=["Framework :: Jupyter"],

0 commit comments

Comments
 (0)