Setup, license and requirements.txt added
This commit is contained in:
parent
51c6df00bd
commit
583a6f3f02
23
license.MD
Normal file
23
license.MD
Normal file
@ -0,0 +1,23 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) [2024] [Darius Klein]
|
||||
|
||||
MIT license for Wazuh-notify
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
4
wazuh-notify-python/requirements.txt
Normal file
4
wazuh-notify-python/requirements.txt
Normal file
@ -0,0 +1,4 @@
|
||||
setuptools~=59.6.0
|
||||
requests~=2.25.1
|
||||
tomli~=2.0.1
|
||||
python-dotenv~=1.0.1
|
||||
14
wazuh-notify-python/setup.py
Normal file
14
wazuh-notify-python/setup.py
Normal file
@ -0,0 +1,14 @@
|
||||
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'
|
||||
)
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
import requests
|
||||
from requests import Response
|
||||
|
||||
import github
|
||||
from wazuh_notify_module import *
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user