From 062672a72ec5210a9f38500ea65ca57a734546ae Mon Sep 17 00:00:00 2001 From: Ralf Schlatterbeck Date: Fri, 28 Jul 2023 13:13:36 +0200 Subject: [PATCH] Add pyproject.toml needed for newer python builds --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..55721c3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "pysmithplot" +version = "0.2.0" +authors = [{ name="Paul Staerke", email="paul.staerke@gmail.com" }, ] +description = "An extension for Matplotlib providing a projection class to generate high quality Smith Chart plots." +readme = 'README.md' +license = {text = 'BSD'} +dependencies = ["matplotlib >= 1.2.0", "numpy", "scipy"] + +[project.urls] +"Homepage" = "https://github.com/vMeijin/pySmithPlot" +"Bug Tracker" = "https://github.com/vMeijin/pySmithPlot/issues"