From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CA576158089 for ; Thu, 5 Oct 2023 14:55:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F17942BC019; Thu, 5 Oct 2023 14:55:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D74ED2BC019 for ; Thu, 5 Oct 2023 14:55:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14E56335D17 for ; Thu, 5 Oct 2023 14:55:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7282C9AC for ; Thu, 5 Oct 2023 14:55:04 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1696516533.8234247d0d228d2311a2cb3cc9c710ca828bc759.sping@gentoo> Subject: [gentoo-commits] proj/elogv:master commit in: / X-VCS-Repository: proj/elogv X-VCS-Files: pyproject.toml setup.py X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 8234247d0d228d2311a2cb3cc9c710ca828bc759 X-VCS-Branch: master Date: Thu, 5 Oct 2023 14:55:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0e2fbef5-e3ac-4ea6-882a-8ad9f08dbd29 X-Archives-Hash: a27172f40abff88c4960b5c302eb5d34 commit: 8234247d0d228d2311a2cb3cc9c710ca828bc759 Author: Alfred Wingate protonmail com> AuthorDate: Thu Oct 5 04:23:14 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Thu Oct 5 14:35:33 2023 +0000 URL: https://gitweb.gentoo.org/proj/elogv.git/commit/?id=8234247d Move metadata from setup.py to pyproject.toml Signed-off-by: Alfred Wingate protonmail.com> pyproject.toml | 12 ++++++++++++ setup.py | 9 +-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fed528d..09f77b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,15 @@ [build-system] requires = ["setuptools"] build-backend = "setuptools.build_meta" + +[project] +name = "elogv" +version = "0.8.0" +authors = [ + {name = "Luca Marturana", email = "lucamarturana@gmail.com"}, +] +license = {text = "GPL-2"} +description = "Curses based utility to view elogs created by Portage" + +[project.urls] +homepage = "https://gitweb.gentoo.org/proj/elogv.git/" diff --git a/setup.py b/setup.py index 682254f..631a6c7 100644 --- a/setup.py +++ b/setup.py @@ -204,14 +204,7 @@ class install_manpages(Command): man_pages = glob("man/*") -setup(name="elogv", - version="0.8.0", - author="Luca Marturana", - author_email="lucamarturana@gmail.com", - license="GPL-2", - description="Curses based utility to view elogs created by Portage", - url="https://gitweb.gentoo.org/proj/elogv.git/", - packages=[], +setup(packages=[], scripts=['elogv'], cmdclass={ 'extract_messages': messages,