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 66import sys
77from io import StringIO
88
9+ from setuptools import find_packages
910from setuptools .dist import Distribution
1011
1112with open (os .path .join ("cve_bin_tool" , "version.py" )) as f :
@@ -43,6 +44,9 @@ def update_egg() -> None:
4344 script_args = ["egg_info" ],
4445 name = "cve-bin-tool" ,
4546 version = VERSION ,
47+ packages = find_packages (
48+ exclude = ["locales" , "presentation" ],
49+ ),
4650 entry_points = {
4751 "console_scripts" : [
4852 "cve-bin-tool = cve_bin_tool.cli:main" ,
Original file line number Diff line number Diff line change 4545 "Programming Language :: Python :: Implementation :: PyPy" ,
4646 ],
4747 install_requires = requirements ,
48- packages = find_packages (),
48+ packages = find_packages (
49+ exclude = ["locales" , "presentation" ],
50+ ),
4951 package_data = {
5052 "cve_bin_tool.output_engine" : [
5153 "html_reports/templates/*.html" ,
You can’t perform that action at this time.
0 commit comments