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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B92F313933E for ; Mon, 5 Jul 2021 20:24:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 010EBE0A70; Mon, 5 Jul 2021 20:24:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB8AEE0A70 for ; Mon, 5 Jul 2021 20:24:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B965342AB0 for ; Mon, 5 Jul 2021 20:24:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A9787C7 for ; Mon, 5 Jul 2021 20:24:17 +0000 (UTC) From: "John Helmert III" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "John Helmert III" Message-ID: <1625516447.841a091e8601c354be5a4c3f715a9e96d4d5fd9d.ajak@gentoo> Subject: [gentoo-commits] proj/security:ajak-cvetool commit in: / X-VCS-Repository: proj/security X-VCS-Files: pyproject.toml setup.cfg X-VCS-Directories: / X-VCS-Committer: ajak X-VCS-Committer-Name: John Helmert III X-VCS-Revision: 841a091e8601c354be5a4c3f715a9e96d4d5fd9d X-VCS-Branch: ajak-cvetool Date: Mon, 5 Jul 2021 20:24:17 +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: 011699bd-6bf9-445f-b738-95a8d6c6e942 X-Archives-Hash: 87aac5ce33da721d5778a90d9aa0af38 commit: 841a091e8601c354be5a4c3f715a9e96d4d5fd9d Author: John Helmert III gentoo org> AuthorDate: Mon Jul 5 20:12:50 2021 +0000 Commit: John Helmert III gentoo org> CommitDate: Mon Jul 5 20:20:47 2021 +0000 URL: https://gitweb.gentoo.org/proj/security.git/commit/?id=841a091e Introduce setuptools boilerplate Currently only installing a cvetool script Signed-off-by: John Helmert III gentoo.org> pyproject.toml | 3 +++ setup.cfg | 15 +++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..07de284 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..e5bf5dd --- /dev/null +++ b/setup.cfg @@ -0,0 +1,15 @@ +[metadata] +name = gentoo-sectools +version = 0.0.0 + +[options] +packages = bin +install_requires = + bracex + pkgcore + requests + urllib3 + +[options.entry_points] +console_scripts = + cvetool = bin.CVETool:cvetool \ No newline at end of file