forked from cys3c/brut3k1t
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.22 KB
/
setup.py
File metadata and controls
57 lines (51 loc) · 1.22 KB
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
55
56
57
#!/usr/bin/env python3
"""
setup.py
Installs brute as both a client library and CLI application locally.
"""
import os
import setuptools
NAME = "brute"
VERSION = "5.0"
REPO = "https://github.com/ex0dus-0x/brute"
DESC = "crowd-sourced credential stuffing engine built for security professionals"
# Main setup method
setuptools.setup(
name = NAME,
version = VERSION,
author = "ex0dus",
description = DESC,
license = "MIT",
url=REPO,
download_url="{}/archive/v{}".format(REPO, VERSION),
packages = setuptools.find_packages(),
entry_points = {
"console_scripts": [
"brute=brute.__main__:main"
],
},
install_requires=[
"requests",
"mechanize",
"paramiko",
"selenium",
"beautifulsoup4"
],
extras_require={
"dev": [
"black",
"pylint",
"pytest",
"mock",
"mypy"
]
},
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
)