Gentoo Archives: gentoo-commits

From: John Helmert III <ajak@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/security:ajak-cvetool commit in: /
Date: Mon, 05 Jul 2021 20:24:20
Message-Id: 1625516447.841a091e8601c354be5a4c3f715a9e96d4d5fd9d.ajak@gentoo
1 commit: 841a091e8601c354be5a4c3f715a9e96d4d5fd9d
2 Author: John Helmert III <ajak <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 5 20:12:50 2021 +0000
4 Commit: John Helmert III <ajak <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 5 20:20:47 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/security.git/commit/?id=841a091e
7
8 Introduce setuptools boilerplate
9
10 Currently only installing a cvetool script
11
12 Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
13
14 pyproject.toml | 3 +++
15 setup.cfg | 15 +++++++++++++++
16 2 files changed, 18 insertions(+)
17
18 diff --git a/pyproject.toml b/pyproject.toml
19 new file mode 100644
20 index 0000000..07de284
21 --- /dev/null
22 +++ b/pyproject.toml
23 @@ -0,0 +1,3 @@
24 +[build-system]
25 +requires = ["setuptools", "wheel"]
26 +build-backend = "setuptools.build_meta"
27 \ No newline at end of file
28
29 diff --git a/setup.cfg b/setup.cfg
30 new file mode 100644
31 index 0000000..e5bf5dd
32 --- /dev/null
33 +++ b/setup.cfg
34 @@ -0,0 +1,15 @@
35 +[metadata]
36 +name = gentoo-sectools
37 +version = 0.0.0
38 +
39 +[options]
40 +packages = bin
41 +install_requires =
42 + bracex
43 + pkgcore
44 + requests
45 + urllib3
46 +
47 +[options.entry_points]
48 +console_scripts =
49 + cvetool = bin.CVETool:cvetool
50 \ No newline at end of file