commit: 841a091e8601c354be5a4c3f715a9e96d4d5fd9d Author: John Helmert III <ajak <AT> gentoo <DOT> org> AuthorDate: Mon Jul 5 20:12:50 2021 +0000 Commit: John Helmert III <ajak <AT> gentoo <DOT> 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 <ajak <AT> 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
