From 332b13896cae44a29b6db2f8014021d7804c2bb8 Mon Sep 17 00:00:00 2001 From: bp Date: Tue, 7 Jan 2025 16:39:01 +0100 Subject: [PATCH] Packaging: Update pyproject.toml file * Do not show the whole MIT license text in the PyPI description. * Add the issue tracker URL to the PyPI description. * Fix a bit of formatting. --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 29a6ef0..77753f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,11 +5,11 @@ build-backend = "setuptools.build_meta" [project] name = "pytrinamic" authors = [ - { name="ADI Trinamic Software Team", email="tmc_info@trinamic.com" }, + { name = "ADI Trinamic Software Team", email = "tmc_info@trinamic.com" }, ] description = "TRINAMIC's Python Technology Access Package." readme = "README.md" -license = {file = "LICENSE"} +license = { text = "MIT" } classifiers = [ "Programming Language :: Python :: 3", "Development Status :: 4 - Beta", @@ -28,6 +28,7 @@ dynamic = ["version"] [project.urls] Homepage = "https://github.com/analogdevicesinc/pytrinamic" +Issues = "https://github.com/analogdevicesinc/pytrinamic/issues" [project.scripts] tmclfwupload = "pytrinamic.cli.tmclfwupload:main"