forked from wazuh/qa-system-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 744 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright (C) 2015-2023, Wazuh Inc.
# Created by Wazuh, Inc. <[email protected]>.
# This program is free software; you can redistribute it and/or modify it under the terms of GPLv2
from setuptools import setup, find_namespace_packages
import shutil
import glob
setup(
name='wazuh-qa-framework',
version='1.0.0',
description='Wazuh testing utilities to help programmers automate tests',
url='https://github.com/wazuh/wazuh-qa-framework',
author='Wazuh',
author_email='[email protected]',
license='GPLv2',
package_dir={'': 'src'},
packages=find_namespace_packages(where='src'),
zip_safe=False
)
# Clean build files
shutil.rmtree('dist')
shutil.rmtree('build')
shutil.rmtree(glob.glob('src/*.egg-info')[0])