From 6832b91dcda004b3073998c5242b50065de45124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elo=C3=AFse=20Brocas?= Date: Mon, 16 Dec 2024 10:15:28 +0100 Subject: [PATCH] [fix] setup: Changelog link fix #43 --- pyproject.toml | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 11c2f1c..410b041 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,20 +15,16 @@ # limitations under the License. [build-system] -requires = [ - 'setuptools' -] +requires = ['setuptools'] [project] name = 'pyrrha-mapper' version = '0.4.2' -authors = [ - { name = 'Eloïse Brocas', email = 'ebrocas@quarkslab.com' }, -] +authors = [{ name = 'Eloïse Brocas', email = 'ebrocas@quarkslab.com' }] readme = "README.md" description = "A mapper collection for firmware analysis" requires-python = ">=3.10" -license = {text = "Apache License 2.0"} +license = { text = "Apache License 2.0" } classifiers = [ 'Development Status :: 4 - Beta', 'Programming Language :: Python :: 3', @@ -37,19 +33,13 @@ classifiers = [ 'Topic :: Security', 'Environment :: Console', ] -dependencies = [ - 'click', - 'coloredlogs', - 'lief', - 'numbat>=0.2.0', - 'rich', -] +dependencies = ['click', 'coloredlogs', 'lief', 'numbat>=0.2.0', 'rich'] [project.urls] Homepage = "https://github.com/quarkslab/pyrrha" Source = "https://github.com/quarkslab/pyrrha" Tracker = "https://github.com/quarkslab/pyrrha/issues" -Changelog = "https://github.com/quarkslab/pyrrha/changleog.md" +Changelog = "https://github.com/quarkslab/pyrrha/CHANGELOG.md" [project.scripts] pyrrha = 'pyrrha_mapper:pyrrha' @@ -61,5 +51,5 @@ doc = [ 'mkdocs-autorefs', 'mkdocs-glightbox', 'mkdocs-material', - 'mkdocs-section-index' + 'mkdocs-section-index', ]