-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from vesche/master
v0.2.2 packaged up to add to PyPI.
- Loading branch information
Showing
5 changed files
with
66 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.pyc | ||
*.egg-info/ | ||
build/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
__author__ = "Kir Ermakov <isox(at)vulners.com>" | ||
__copyright__ = "Copyright 2018, Vulners" | ||
__credits__ = ["Kir Ermakov", | ||
"Igor Bulatenko", | ||
"Ivan Elkin", | ||
"Gerome Fournier <jef(at)foutaise.org>", | ||
"JBFC" | ||
] | ||
__license__ = "LGPL" | ||
__version__ = "0.2.2" | ||
__maintainer__ = "Kir Ermakov" | ||
__email__ = "isox@vulners.com" | ||
__status__ = "Release" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
import getsploit | ||
from setuptools import setup | ||
|
||
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=getsploit.__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=getsploit.__author__, | ||
author_email=getsploit.__email__, | ||
maintainer=getsploit.__maintainer__, | ||
entry_points={ | ||
'console_scripts': [ | ||
'getsploit = getsploit.getsploit:main', | ||
] | ||
}, | ||
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", | ||
] | ||
) |