setup.cfg 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.16
  39. nbclassic~=0.2
  40. jinja2>=2.1
  41. [options.extras_require]
  42. test =
  43. check-manifest
  44. coverage
  45. jupyterlab_server[test]
  46. pytest>=6.0
  47. pytest-cov
  48. pytest-console-scripts
  49. pytest-check-links>=0.5
  50. requests
  51. requests_cache
  52. virtualenv
  53. pre-commit
  54. ui-tests = build
  55. [options.entry_points]
  56. console_scripts =
  57. jupyter-lab = jupyterlab.labapp:main
  58. jupyter-labextension = jupyterlab.labextensions:main
  59. jupyter-labhub = jupyterlab.labhubapp:main
  60. jlpm = jupyterlab.jlpmapp:main
  61. [options.packages.find]
  62. exclude = ['docs*', 'examples*']