File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 6
6
import sys
7
7
from io import StringIO
8
8
9
+ from setuptools import find_packages
9
10
from setuptools .dist import Distribution
10
11
11
12
with open (os .path .join ("cve_bin_tool" , "version.py" )) as f :
@@ -43,6 +44,9 @@ def update_egg() -> None:
43
44
script_args = ["egg_info" ],
44
45
name = "cve-bin-tool" ,
45
46
version = VERSION ,
47
+ packages = find_packages (
48
+ exclude = ["locales" , "presentation" ],
49
+ ),
46
50
entry_points = {
47
51
"console_scripts" : [
48
52
"cve-bin-tool = cve_bin_tool.cli:main" ,
Original file line number Diff line number Diff line change 45
45
"Programming Language :: Python :: Implementation :: PyPy" ,
46
46
],
47
47
install_requires = requirements ,
48
- packages = find_packages (),
48
+ packages = find_packages (
49
+ exclude = ["locales" , "presentation" ],
50
+ ),
49
51
package_data = {
50
52
"cve_bin_tool.output_engine" : [
51
53
"html_reports/templates/*.html" ,
You can’t perform that action at this time.
0 commit comments