-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
executable file
·30 lines (26 loc) · 918 Bytes
/
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
#!/usr/bin/env python3
__author__ = "Andrea Fioraldi"
__copyright__ = "Copyright 2017-22, Andrea Fioraldi"
__license__ = "MIT"
__email__ = "andreafioraldi@gmail.com"
from setuptools import setup
setup(
name='cve_searchsploit',
version="1.7",
license=__license__,
description='Search an exploit in the local exploitdb database by its CVE',
author=__author__,
author_email=__email__,
url='https://github.com/andreafioraldi/cve_searchsploit',
download_url = 'https://github.com/andreafioraldi/cve_searchsploit/archive/master.tar.gz',
package_dir={'cve_searchsploit': 'cve_searchsploit'},
packages=['cve_searchsploit'],
install_requires=[
'requests',
'progressbar2'
],
entry_points={
'console_scripts': ['cve_searchsploit = cve_searchsploit.main:main']
},
package_data={"cve_searchsploit": ["*.json"]}
)