diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..5c3aba3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,38 @@ +[build-system] +#build-backend = "uv_build" +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[tool.setuptools.packages.find] +where = [ + "pygrace", + "tudplot", +] + +[project] +name = "tudplot" +description="Matplotlib styling in TU Darmstadt corporate design" +readme = "README.md" +keywords = ["tud", "plotting", "corporate design", "Darmstadt"] +license = "MIT" +license-files = ["LICEN[CS]E*"] +version = "0.1" +dependencies = [ + "six", + "matplotlib", +] + +authors = [ + {name = "Niels Müller"}, + {name = "Sebastian Kloth"}, +] +maintainers = [ + {name = "Markus Rosenstihl", email = "markus.rosenstihl@pkm.tu-darmstadt.de"}, +] + + +[project.urls] +Homepage = "https://gitea.pkm.physik.tu-darmstadt.de/IPKM/python-tudplot" +Repository = "https://gitea.pkm.physik.tu-darmstadt.de/IPKM/python-tudplot.git" + +