39 lines
814 B
TOML
39 lines
814 B
TOML
[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"
|
|
|
|
|