setup.cfg 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. jupyterlab_server~=2.3
  35. jupyter_server~=1.4
  36. nbclassic~=0.2
  37. jinja2>=2.1
  38. [options.extras_require]
  39. 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
  40. [options.entry_points]
  41. console_scripts =
  42. jupyter-lab = jupyterlab.labapp:main
  43. jupyter-labextension = jupyterlab.labextensions:main
  44. jupyter-labhub = jupyterlab.labhubapp:main
  45. jlpm = jupyterlab.jlpmapp:main
  46. [options.packages.find]
  47. exclude = ['docs*', 'examples*']