|
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 | + |
| 5 | +[project] |
| 6 | +name = "perfplot" |
| 7 | +authors = [{name = "Nico Schlömer", email = "nico.schloemer@gmail.com"}] |
| 8 | +description = "Performance plots for Python code snippets" |
| 9 | +readme = "README.md" |
| 10 | +license = {file = "LICENSE"} |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 5 - Production/Stable", |
| 13 | + "Intended Audience :: Developers", |
| 14 | + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", |
| 15 | + "Operating System :: OS Independent", |
| 16 | + "Programming Language :: Python", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Programming Language :: Python :: 3.7", |
| 19 | + "Programming Language :: Python :: 3.8", |
| 20 | + "Programming Language :: Python :: 3.9", |
| 21 | + "Programming Language :: Python :: 3.10", |
| 22 | + "Topic :: Software Development", |
| 23 | + "Topic :: Utilities", |
| 24 | +] |
| 25 | +keywords = ["performance", "profile"] |
| 26 | +dynamic = ["version"] |
| 27 | +requires-python = ">=3.7" |
| 28 | +dependencies = [ |
| 29 | + "matplotlib", |
| 30 | + "matplotx", |
| 31 | + "numpy", |
| 32 | + "rich", |
| 33 | + "typing_extensions;python_version<'3.8'", |
| 34 | +] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +Code = "https://github.com/nschloe/perfplot" |
| 38 | +Issues = "https://github.com/nschloe/perfplot/issues" |
| 39 | +Funding = "https://github.com/sponsors/nschloe" |
0 commit comments