setup.cfg 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. Framework :: Jupyter
  16. Framework :: Jupyter :: JupyterLab
  17. Framework :: Jupyter :: JupyterLab :: 3
  18. Intended Audience :: Developers
  19. Intended Audience :: System Administrators
  20. Intended Audience :: Science/Research
  21. License :: OSI Approved :: BSD License
  22. Programming Language :: Python
  23. Programming Language :: Python :: 3.7
  24. Programming Language :: Python :: 3.8
  25. Programming Language :: Python :: 3.9
  26. Programming Language :: Python :: 3.10
  27. [options]
  28. zip_safe = False
  29. include_package_data = True
  30. packages = find:
  31. python_requires = >=3.7
  32. install_requires =
  33. ipython
  34. packaging
  35. tornado>=6.1.0
  36. jupyter_core
  37. jupyterlab_server~=2.10
  38. jupyter_server~=1.4
  39. nbclassic~=0.2
  40. jinja2>=2.1
  41. [options.extras_require]
  42. test = coverage; pytest>=6.0; pytest-cov; pytest-console-scripts; pytest-check-links>=0.5; jupyterlab_server[test]; requests; requests_cache; virtualenv; check-manifest
  43. ui-tests = build
  44. [options.entry_points]
  45. console_scripts =
  46. jupyter-lab = jupyterlab.labapp:main
  47. jupyter-labextension = jupyterlab.labextensions:main
  48. jupyter-labhub = jupyterlab.labhubapp:main
  49. jlpm = jupyterlab.jlpmapp:main
  50. [options.packages.find]
  51. exclude = ['docs*', 'examples*']