forked from vulnersCom/getsploit
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (48 loc) · 1.58 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
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup
version = re.search(r'__version__\s*=\s*"(.+)"', open('getsploit/getsploit.py', 'rt').read()).group(1)
long_description = '''
getsploit
=========
Command line search and download tool for Vulners Database inspired by
searchsploit. It allows you to search online for the exploits across all the
most popular collections: Exploit-DB, Metasploit, Packetstorm and others. The
most powerful feature is immediate exploit source download right in your
working path.
'''
setup(
name='getsploit',
packages=['getsploit'],
version=version,
description='Command line search and download tool for Vulners Database \
inspired by searchsploit.',
long_description=long_description,
license='LGPLv3',
url='https://github.com/vulnersCom/getsploit',
author='Kirill Ermakov',
author_email='[email protected]',
maintainer="Kir Ermakov",
entry_points={
'console_scripts': [
'getsploit = getsploit.getsploit:main',
]
},
install_requires = [
'vulners',
'six',
'texttable',
'clint',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Topic :: Security",
]
)