|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=42", "wheel"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["flit_core >=3.2,<4"] |
| 3 | +build-backend = "flit_core.buildapi" |
4 | 4 |
|
5 | 5 | [tool.isort] |
6 | 6 | profile = "black" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "tikzplotlib" |
| 10 | +authors = [{ name = "Nico Schlömer", email = "[email protected]"}] |
| 11 | +description = "Convert matplotlib figures into TikZ/PGFPlots" |
| 12 | +readme = "README.md" |
| 13 | +license = {file = "LICENSE"} |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 5 - Production/Stable", |
| 16 | + "Framework :: Matplotlib", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Operating System :: OS Independent", |
| 19 | + "Programming Language :: Python", |
| 20 | + "Programming Language :: Python :: 3", |
| 21 | + "Programming Language :: Python :: 3.7", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Topic :: Multimedia :: Graphics :: Graphics Conversion", |
| 26 | + "Topic :: Scientific/Engineering :: Visualization", |
| 27 | +] |
| 28 | +keywords = ["latex", "tikz", "matplotlib", "graphics"] |
| 29 | +dynamic = ["version"] |
| 30 | +requires-python = ">=3.7" |
| 31 | +dependencies = [ |
| 32 | + "matplotlib >= 1.4.0", |
| 33 | + "numpy", |
| 34 | + "Pillow", |
| 35 | + "webcolors", |
| 36 | +] |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Code = "https://github.com/nschloe/tikzplotlib" |
| 40 | +Issues = "https://github.com/nschloe/tikzplotlib/issues" |
| 41 | +Funding = "https://github.com/sponsors/nschloe" |
0 commit comments