-
Notifications
You must be signed in to change notification settings - Fork 103
/
setup.py
executable file
·31 lines (29 loc) · 1.06 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
#!/usr/bin/env python3
# coding=utf-8
# *******************************************************************
# *** BFAC: Backup File Artifacts Checker ***
# * Homepage:
# https://github.com/mazen160/bfac
# * setup.py:
# BFAC setup script
# * Author:
# Mazin Ahmed <Mazin AT MazinAhmed DOT net>
# *******************************************************************
from setuptools import setup, find_packages
setup(
name='bfac',
packages=find_packages(),
version='1.4',
scripts=['bfac'],
description="Advanced Backup-File Artifacts Testing for Web-Applications",
long_description="An automated tool that checks for backup artifacts " +
"that may disclose the web-application's" +
" source code.",
author='Mazin Ahmed',
author_email='[email protected]',
url='https://github.com/mazen160/bfac',
keywords=['backup', 'artifacts', 'checker', 'web scanner',
'web vulnerability scanner', 'bfac'],
install_requires=['colorama', 'requests', 'requests[socks]'],
license='GPL-3.0'
)