Skip to content

Commit 27418ec

Browse files
authored
Merge pull request #184 from story645/sort
Added IDE section
2 parents 8cd8f25 + e5f539b commit 27418ec

File tree

7 files changed

+65
-0
lines changed

7 files changed

+65
-0
lines changed

docs/make.bat

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
pushd %~dp0
2+
3+
REM Minimal windows makefile for sphinx documentation
4+
5+
6+
set SPHINXOPTS=
7+
set SPHINXBUILD=python -msphinx
8+
set SOURCEDIR=source
9+
set BUILDDIR=build
10+
11+
if "%1" == "" goto help
12+
if "%1" == "show" goto show
13+
14+
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
15+
goto end
16+
17+
:help
18+
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
19+
goto end
20+
21+
:show
22+
python -m webbrowser -t "%~dp0\build\html\index.html"
23+
24+
:end

packages/jupyterLab.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: JupyterLab
2+
repo: jupyterlab/jupyterlab
3+
section: ides
4+
description: >-
5+
Web-based interactive development environment for notebooks, code, and data.
6+
site: https://jupyterlab.readthedocs.io/en/stable/ # optional, default repo site
7+
keywords: [ides, interactive] # optional
8+
pypi_name: jupyterlab
9+
conda_package: jupyterlab

packages/jupyterNotebook.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Jupyter Notebook
2+
repo: jupyter/notebook
3+
section: ides
4+
description: >-
5+
Web-based interactive development environment for notebooks, code, and data.
6+
site: https://jupyter-notebook.readthedocs.io/en/stable/ # optional, default repo site
7+
keywords: [ides, interactive] # optional
8+
pypi_name: notebook
9+
conda_package: notebook

packages/pycharm.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: pycharm
2+
repo: https://www.jetbrains.com/pycharm/
3+
section: ides
4+
description: Python IDE for data science and web development.
5+
site: https://www.jetbrains.com/pycharm/ # optional, default repo site
6+
keywords: [ide, interactivity] # optional

packages/spyder.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: spyder
2+
repo: spyder-ide/spyder
3+
section: ides
4+
description: >-
5+
Open source, community-developed scientific environment and IDE written in Python,
6+
for Python.
7+
site: https://www.spyder-ide.org/ # optional, default repo site
8+
keywords: [ides, interactivity]

packages/vscode.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: vscode
2+
repo: microsoft/vscode
3+
section: ides
4+
description: >-
5+
Streamlined code editor with support for development operations like debugging,
6+
task running, and version control.
7+
site: https://code.visualstudio.com/
8+
keywords: [ides, interactivity]

section_names.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ section_names:
1111
domain specific libraries: Domain-specific libraries
1212
documentation: Documentation
1313
experimental: Experimental projects that may be merged upstream eventually
14+
ides: Development tools with built-in Matplotlib rendering
1415
miscellaneous: Miscellaneous

0 commit comments

Comments
 (0)