-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
51 lines (50 loc) · 1.53 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
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
setup(
name="rvd-tools",
version="0.9",
packages=find_packages(),
include_package_data=True, # this requires a MANIFEST.in
install_requires=[
"Click",
"PyGithub",
"arrow",
"bs4",
"cerberus",
"dedupe==1.10.0",
"jsonschema",
"mergedeep",
"numpy==1.17.3",
"plotly",
#"pprint",
"pygithub",
"python-dateutil==2.7.3",
"python-gitlab",
"pyyaml==6.0",
"qprompt",
"retrying",
"dedupe-variable-datetime==0.1.0",
"tabulate",
"retrying",
"vulners",
"xmltodict",
"zope.index==5.2",
"importlib-resources",
"python-gitlab==2.0.0",
"requests==2.32.0",
"pycvesearch==1.0",
"cvsslib@git+https://github.com/aliasrobotics/RVSS#egg=cvsslib",
],
url="https://github.com/aliasrobotics/RVD",
project_urls={"Source Code": "https://github.com/aliasrobotics/RVD"},
license="GPLv3",
author="Alias Robotics",
author_email="[email protected]",
description="Toolset for the Robot Vulnerability Database (RVD)",
long_description="""
The Robot Vulnerability Database or RVD for short is an archive of
robot vulnerabilities and bugs. This Python 3 package provides a set of tools to
manage, operate and automate RVD.'
""",
keywords=["RVD", "vulnerability", "security", "tools", "ics"],
entry_points={"console_scripts": ["rvd = rvd_tools.cli:start"]},
)