-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (42 loc) · 2.79 KB
/
setup.py
File metadata and controls
50 lines (42 loc) · 2.79 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
# coding: utf-8
"""
MetaDefender Cloud API v4
## About This Guide Welcome to the MetaDefender Cloud guide. This guide is intended to provide the information you need to: Start analyzing files with 30+ anti-malware engines ---- ## How to use MetaDefender Cloud Public APIs Learn about new features, updated features, and bug fixes Learn about frequently asked questions and additional concepts through our library of knowledge base articles ## Key Features of MetaDefender Cloud > _**File Analysis**_ - Analyzing binaries with 30+ anti-malware engines > _**Deep CDR**_ (aka Content Disarm and Reconstruction) with support for 100+ file types > _**Sandbox**_ dynamic analysis to detect more unknown and targeted attacks > _**Binary**_ vulnerability data assessment > _**IP-Domain reputation**_ > _**Threat Intelligence Feeds**_
The version of the OpenAPI document: 4.0
Contact: feedback@opswat.com
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from setuptools import setup, find_packages # noqa: H301
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "mcl-platform-sdk"
VERSION = "1.0.1"
PYTHON_REQUIRES = ">= 3.9"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"python-dateutil >= 2.8.2",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]
setup(
name=NAME,
version=VERSION,
description="OPSWAT MetaDefender Cloud Python SDK",
author="Florentina Gheorma",
author_email="gheorma.florentina@opswat.com",
url="https://github.com/opswat/mcl-platform-sdk-python",
keywords=["OPSWAT", "MetaDefender", "MetaDefender Cloud", "Security", "Malware Scanning"],
install_requires=REQUIRES,
packages=find_packages(exclude=["venv", "venv.*"]),
include_package_data=True,
license="MIT",
long_description_content_type='text/markdown',
long_description="""\
## About This Guide Welcome to the MetaDefender Cloud guide. This guide is intended to provide the information you need to: Start analyzing files with 30+ anti-malware engines ---- ## How to use MetaDefender Cloud Public APIs Learn about new features, updated features, and bug fixes Learn about frequently asked questions and additional concepts through our library of knowledge base articles ## Key Features of MetaDefender Cloud > _**File Analysis**_ - Analyzing binaries with 30+ anti-malware engines > _**Deep CDR**_ (aka Content Disarm and Reconstruction) with support for 100+ file types > _**Sandbox**_ dynamic analysis to detect more unknown and targeted attacks > _**Binary**_ vulnerability data assessment > _**IP-Domain reputation**_ > _**Threat Intelligence Feeds**_
""", # noqa: E501
)