forked from codingo/NoSQLMap
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 684 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 684 Bytes
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
from setuptools import find_packages, setup
setup(
name = "NoSQLMap",
version = "0.5",
packages = find_packages(),
scripts = ['nosqlmap.py', 'nsmmongo.py', 'nsmcouch.py'],
entry_points = {
"console_scripts": [
"NoSQLMap = nosqlmap:main"
]
},
install_requires = [ "CouchDB==1.0", "httplib2==0.9", "ipcalc==1.1.3",\
"NoSQLMap==0.5", "pbkdf2==1.3", "pymongo==2.7.2",\
"requests==2.5.0"],
author = "tcstools",
description = "Automated MongoDB and NoSQL web application exploitation tool",
license = "GPLv3",
long_description = open("README.md").read(),
url = "http://www.nosqlmap.net"
)