-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathsetup.py
48 lines (44 loc) · 2.31 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
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
import os
import shutil
from setuptools import setup, find_packages
target_directory = (
os.path.join(os.getenv('APPDATA', ''), 'xnLinkFinder') if os.name == 'nt'
else os.path.join(os.path.expanduser("~"), ".config", "xnLinkFinder") if os.name == 'posix'
else os.path.join(os.path.expanduser("~"), "Library", "Application Support", "xnLinkFinder") if os.name == 'darwin'
else None
)
# Copy the config.yml file to the target directory if it exists
configNew = False
if target_directory and os.path.isfile("config.yml"):
os.makedirs(target_directory, exist_ok=True)
# If file already exists, create a new one
if os.path.isfile(target_directory+'/config.yml'):
configNew = True
os.rename(target_directory+'/config.yml',target_directory+'/config.yml.OLD')
shutil.copy("config.yml", target_directory)
os.rename(target_directory+'/config.yml',target_directory+'/config.yml.NEW')
os.rename(target_directory+'/config.yml.OLD',target_directory+'/config.yml')
else:
shutil.copy("config.yml", target_directory)
setup(
name="xnLinkFinder",
packages=find_packages(),
version=__import__('xnLinkFinder').__version__,
description="A python script to find endpoints from a URL, a file of URLs, a directory of files, a Burp XML file or a ZAP ASCII message file. It also gets potential parameters and a target specific wordlist.",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author="@xnl-h4ck3r",
url="https://github.com/xnl-h4ck3r/xnlLinkFinder",
py_modules=["xnLinkFinder"],
install_requires=["requests","psutil","pyyaml","termcolor","urlparse3","beautifulsoup4","lxml","html5lib","urllib3"],
entry_points={
'console_scripts': [
'xnLinkFinder = xnLinkFinder.xnLinkFinder:main',
],
},
)
if configNew:
print('\n\033[33mIMPORTANT: The file '+target_directory+'/config.yml already exists.\nCreating config.yml.NEW but leaving existing config.\nIf you need the new file, then remove the current one and rename config.yml.NEW to config.yml\n\033[0m')
else:
print('\n\033[92mThe file '+target_directory+'/config.yml has been created.\n\033[0m')