diff options
author | John Helmert III <ajak@gentoo.org> | 2021-07-05 15:12:50 -0500 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2021-07-05 15:20:47 -0500 |
commit | 841a091e8601c354be5a4c3f715a9e96d4d5fd9d (patch) | |
tree | 34a73b77151ca49572ff05e0ee4a48c99a1065c0 | |
parent | gitignore: ignore egg-info (diff) | |
download | security-841a091e8601c354be5a4c3f715a9e96d4d5fd9d.tar.gz security-841a091e8601c354be5a4c3f715a9e96d4d5fd9d.tar.bz2 security-841a091e8601c354be5a4c3f715a9e96d4d5fd9d.zip |
Introduce setuptools boilerplate
Currently only installing a cvetool script
Signed-off-by: John Helmert III <ajak@gentoo.org>
-rw-r--r-- | pyproject.toml | 3 | ||||
-rw-r--r-- | setup.cfg | 15 |
2 files changed, 18 insertions, 0 deletions
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 |