Skip to content

Commit

Permalink
Move JupyterLab out of dev, simplify jupyterlab target
Browse files Browse the repository at this point in the history
  • Loading branch information
1kastner authored Dec 10, 2023
1 parent 7eccb4c commit 2377cab
Showing 1 changed file with 7 additions and 16 deletions.
23 changes: 7 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@
'pytest-xdist', # use several processes to speed up the testing process
'pytest-github-actions-annotate-failures', # turns pytest failures into action annotations
'seaborn', # some visuals in unittests are generated by seaborn
'nbformat',
'nbconvert',
'nbconvert', # used to run tests in Jupyter notebooks, see ./test/notebooks/test_run_notebooks.py

# build documentation
'sphinx', # build the documentation
Expand All @@ -63,30 +62,22 @@
'nbsphinx', # use Jupyter Notebooks in the documentation
'ipython', # for setting up the pygments_lexer
'ipykernel', # for allowing nbsphinx to execute the Jupyter Notebooks
'jupyterlab', # continue development on the Jupyter Notebooks included in this repository

# checking code quality
'pylint', # lint Python code
'flake8 <6.0', # lint Python code
'flake8_nb', # lint Jupyter Notebooks
'flake8', # lint Python code
'flake8_nb', # lint code in Jupyter Notebooks

# publish at PyPI
'wheel', # use command 'bdist_wheel'
'twine', # check and upload package to PyPI
],
# a collection of nice-to-haves for working on Jupyter Notebooks - just a favorites list of the authors
'jupyterlab': [
"jupyterlab-spellchecker",
"jupyterlab-lsp",
"python-lsp-server",
"pyls-flake8",
"autopep8",
"rope",
"yapf",
"pydocstyle",
"jupyterlab_code_formatter",
"black",
"isort"
'jupyterlab', # continue development on the Jupyter Notebooks included in this repository
"jupyterlab-spellchecker", # avoid typos in documentation
"jupyterlab-lsp", # better autocomplete
"python-lsp-server[all]", # better autocomplete
]
},
license=metadata['__license__'],
Expand Down

0 comments on commit 2377cab

Please sign in to comment.