You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.7 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: ipywidgets
  3. Version: 7.5.1
  4. Summary: IPython HTML widgets for Jupyter
  5. Home-page: http://ipython.org
  6. Author: IPython Development Team
  7. Author-email: ipython-dev@scipy.org
  8. License: BSD
  9. Keywords: Interactive,Interpreter,Shell,Web
  10. Platform: Linux
  11. Platform: Mac OS X
  12. Platform: Windows
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Intended Audience :: System Administrators
  15. Classifier: Intended Audience :: Science/Research
  16. Classifier: License :: OSI Approved :: BSD License
  17. Classifier: Programming Language :: Python
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.3
  21. Classifier: Programming Language :: Python :: 3.4
  22. Classifier: Programming Language :: Python :: 3.5
  23. Classifier: Framework :: Jupyter
  24. Requires-Dist: ipykernel (>=4.5.1)
  25. Requires-Dist: traitlets (>=4.3.1)
  26. Requires-Dist: nbformat (>=4.2.0)
  27. Requires-Dist: widgetsnbextension (~=3.5.0)
  28. Requires-Dist: ipython (<6.0.0,>=4.0.0) ; python_version<"3.3"
  29. Requires-Dist: ipython (>=4.0.0) ; python_version>="3.3"
  30. Provides-Extra: test
  31. Requires-Dist: pytest (>=3.6.0) ; extra == 'test'
  32. Requires-Dist: pytest-cov ; extra == 'test'
  33. Requires-Dist: mock ; (python_version=="2.7") and extra == 'test'
  34. .. image:: https://img.shields.io/pypi/v/ipywidgets.svg
  35. :target: https://pypi.python.org/pypi/ipywidgets/
  36. :alt: Version Number
  37. .. image:: https://img.shields.io/pypi/dm/ipywidgets.svg
  38. :target: https://pypi.python.org/pypi/ipywidgets/
  39. :alt: Number of PyPI downloads
  40. Interactive HTML Widgets
  41. ========================
  42. Interactive HTML widgets for Jupyter notebooks and the IPython kernel.
  43. Usage
  44. =====
  45. .. code-block:: python
  46. from ipywidgets import IntSlider
  47. IntSlider()