-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.02 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "FALL",
version = "1.8",
author = "Devansh Raghav",
author_email = "[email protected]",
description = ("A automated penetration testing tool"),
license = "MIT",
keywords = ["FALL", "Bug Bounty", "pentesting", "security", "hacking"],
url = "https://github.com/DevanshRaghav75/FALL",
packages=find_packages(),
long_description=read('README.md'),
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
package_data={'FALL': ['db/*']},
install_requires=[
'requests',
'emoji',
'bs4',
'colorama',
],
entry_points={
'console_scripts': [
'FALL = FALL.__main__:main'
]
},
)