-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.03 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
from setuptools import setup, find_packages
with open("README.md", "r") as file:
long_description = file.read()
setup(
name='raccoon-scanner',
packages=find_packages(exclude="tests"),
license="MIT",
version='0.8.5',
description='Offensive Security Tool for Reconnaissance and Information Gathering',
long_description=long_description,
long_description_content_type="text/markdown",
author='Evyatar Meged',
author_email='evyatarmeged@gmail.com',
url='https://github.com/evyatarmeged/Raccoon',
install_requires=['beautifulsoup4',
'requests',
'dnspython',
"lxml",
"click",
"fake-useragent",
"requests[socks]",
"xmltodict"],
package_data={
"raccoon_src": [
"wordlists/*"
]
},
include_package_data=True,
entry_points={
'console_scripts': [
'raccoon=raccoon_src.main:main'
]
},
)