setup.cfg 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [metadata]
  2. name = jupyterlab
  3. version = attr: jupyterlab._version.__version__
  4. description = JupyterLab computational environment
  5. long_description = file: README.md
  6. long_description_content_type = text/markdown
  7. license_file = LICENSE
  8. author = Jupyter Development Team
  9. author_email = jupyter@googlegroups.com
  10. url = https://jupyter.org
  11. platforms = Linux, Mac OS X, Windows
  12. keywords = ipython, jupyter
  13. classifiers =
  14. Development Status :: 5 - Production/Stable
  15. Intended Audience :: Developers
  16. Intended Audience :: System Administrators
  17. Intended Audience :: Science/Research
  18. License :: OSI Approved :: BSD License
  19. Programming Language :: Python
  20. Programming Language :: Python :: 3.6
  21. Programming Language :: Python :: 3.7
  22. Programming Language :: Python :: 3.8
  23. Programming Language :: Python :: 3.9
  24. [options]
  25. zip_safe = False
  26. include_package_data = True
  27. packages = find:
  28. python_requires = >=3.6
  29. install_requires =
  30. ipython
  31. packaging
  32. tornado>=6.1.0
  33. jupyter_core
  34. jupyter_packaging~=0.9
  35. jupyterlab_server~=2.3
  36. jupyter_server~=1.4
  37. nbclassic~=0.2
  38. jinja2>=2.1
  39. [options.extras_require]
  40. test = coverage; pytest>=6.0; pytest-cov; pytest-console-scripts; pytest-check-links>=0.5; jupyterlab_server[test]~=2.2; requests; requests_cache; virtualenv; check-manifest
  41. [options.entry_points]
  42. console_scripts =
  43. jupyter-lab = jupyterlab.labapp:main
  44. jupyter-labextension = jupyterlab.labextensions:main
  45. jupyter-labhub = jupyterlab.labhubapp:main
  46. jlpm = jupyterlab.jlpmapp:main
  47. [options.packages.find]
  48. exclude = ['docs*', 'examples*']