-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4555 from wazuh/fix/wj5695-revert-3760-setuptools…
…-dep Revert "Pull request #3788 from wazuh/3760-setuptools-dep"
- Loading branch information
Showing
4 changed files
with
6 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Created by Wazuh, Inc. <[email protected]>. | ||
# This program is free software; you can redistribute it and/or modify it under the terms of GPLv2 | ||
import json | ||
from setuptools import setup, find_packages | ||
import os | ||
from setuptools import setup, find_namespace_packages | ||
|
||
package_data_list = [ | ||
'data/agent.conf', | ||
|
@@ -79,7 +79,7 @@ def get_version(): | |
author='Wazuh', | ||
author_email='[email protected]', | ||
license='GPLv2', | ||
packages=find_namespace_packages(), | ||
packages=find_packages(), | ||
package_data={'wazuh_testing': package_data_list}, | ||
entry_points={'console_scripts': scripts_list}, | ||
include_package_data=True, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters