Setup, license and requirements.txt added

This commit is contained in:
Rudi klein 2024-06-07 18:02:26 +02:00
parent 51c6df00bd
commit 583a6f3f02
5 changed files with 42 additions and 1 deletions

23
license.MD Normal file
View 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.

View File

@ -0,0 +1,4 @@
setuptools~=59.6.0
requests~=2.25.1
tomli~=2.0.1
python-dotenv~=1.0.1

View 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'
)

View File

@ -10,7 +10,7 @@
import requests import requests
from requests import Response from requests import Response
import github
from wazuh_notify_module import * from wazuh_notify_module import *