-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsetup.py
49 lines (45 loc) · 1.69 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
49
import os
import sys
import setuptools
from setuptools.command.install import install
CURRENT_DIR = os.getcwd()
REQUIREMENTS = 'requirements.txt'
WIN_REQUIREMENTS = 'win-requirements.txt'
requires = [line.strip('\n') for line in open(REQUIREMENTS).readlines()]
with open("README.md", "r") as fh:
long_description = fh.read()
windows_requires = [line.strip('\n') for line in open(WIN_REQUIREMENTS).readlines()]
VERSION = "1.0.6"
setuptools.setup(
name="R3con1z3r",
version=VERSION,
author='AbdulGaphy',
author_email="abdulgaphy@gmail.com",
description="R3con1z3r is a lightweight Web information gathering tool with an intuitive features written in python. it provides a powerful environment in which open source intelligence (OSINT) web-based footprinting can be conducted quickly and thoroughly.",
url="https://github.com/abdulgaphy/r3con1z3r",
packages=setuptools.find_packages(),
# install_requires=requires,
# install windows requirements
install_requires= requires+windows_requires if sys.platform.startswith('win') \
else requires,
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords='OSINT web reconnaisance traceroute footprinting DNS',
classifiers=(
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
# move script depending on platform
entry_points={
'console_scripts': [
'r3con1z3r=r3con1z3r.cli:main'
]
},
package_data={
'': ['*.*'],
},
include_package_data=True,
zip_safe=True,
)