Skip to content

Commit 295b6d1

Browse files
authored
fix: entry point error (fixes #1323) (#1601)
1 parent a4e8de7 commit 295b6d1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cve_bin_tool/egg_updater.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ def update_egg() -> None:
3535
script_name="setup.py",
3636
script_args=["egg_info"],
3737
name="cve-bin-tool",
38+
version="3.0",
3839
entry_points={
40+
"console_scripts": [
41+
"cve-bin-tool = cve_bin_tool.cli:main",
42+
"csv2cve = cve_bin_tool.csv2cve:main",
43+
],
3944
"cve_bin_tool.checker": [
4045
"{} = cve_bin_tool.checkers.{}:{}".format(
4146
filename.replace(".py", ""),

0 commit comments

Comments
 (0)