15 lines
303 B
Python
15 lines
303 B
Python
|
|
from setuptools import setup
|
||
|
|
import github
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name='wazuh-notify',
|
||
|
|
version='1.0',
|
||
|
|
packages=[''],
|
||
|
|
url='https://github.com/KleinProjects/wazuh-notify.git',
|
||
|
|
license='MIT',
|
||
|
|
author='Darius Klein',
|
||
|
|
author_email='darius.klein@dariusklein.nl',
|
||
|
|
description='Wazuh notify'
|
||
|
|
)
|
||
|
|
|