|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = ["setuptools"] |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "matplotlib-inline" |
| 7 | +description = "Inline Matplotlib backend for Jupyter" |
| 8 | +authors = [ |
| 9 | + { name = "IPython Development Team", email = "[email protected]"}, |
| 10 | +] |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 5 - Production/Stable", |
| 13 | + "Framework :: IPython", |
| 14 | + "Framework :: Jupyter", |
| 15 | + "Framework :: Jupyter :: JupyterLab", |
| 16 | + "Framework :: Jupyter :: JupyterLab :: 3", |
| 17 | + "Framework :: Jupyter :: JupyterLab :: 4", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Intended Audience :: Science/Research", |
| 20 | + "License :: OSI Approved :: BSD License", |
| 21 | + "Programming Language :: Python", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.8", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: 3.12", |
| 28 | + "Topic :: Multimedia :: Graphics", |
| 29 | +] |
| 30 | +dependencies = ["traitlets"] |
| 31 | +dynamic = ["version"] |
| 32 | +keywords = [ |
| 33 | + "ipython", |
| 34 | + "jupyter", |
| 35 | + "matplotlib", |
| 36 | + "python", |
| 37 | +] |
| 38 | +license = {file = "LICENSE"} |
| 39 | +readme = "README.md" |
| 40 | +requires-python = ">=3.8" |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +Homepage = "https://github.com/ipython/matplotlib-inline" |
| 44 | + |
| 45 | +[tool.setuptools.dynamic] |
| 46 | +version = {attr = "matplotlib_inline.__version__"} |
0 commit comments