forked from wazuh/wazuh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (32 loc) · 1.36 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# Copyright (C) 2015-2019, Wazuh Inc.
# Created by Wazuh, Inc. <[email protected]>.
# This program is a free software; you can redistribute it and/or modify it under the terms of GPLv2
from setuptools import setup, find_packages
NAME = "api"
VERSION = "4.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = []
setup(
name=NAME,
version=VERSION,
description="Wazuh API",
author_email="[email protected]",
author="Wazuh",
url="https://github.com/wazuh",
keywords=["Wazuh API"],
install_requires=REQUIRES,
packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
package_data={'': ['spec/spec.yaml']},
include_package_data=True,
zip_safe=False,
license='GPLv2',
long_description="""\
The Wazuh API is an open source RESTful API that allows for interaction with the Wazuh manager from a web browser, command line tool like cURL or any script or program that can make web requests. The Wazuh Kibana app relies on this heavily and Wazuh’s goal is to accommodate complete remote management of the Wazuh infrastructure via the Wazuh Kibana app. Use the API to easily perform everyday actions like adding an agent, restarting the manager(s) or agent(s) or looking up syscheck details.
"""
)