-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
38 lines (37 loc) · 1018 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='lfimap',
version='0.1.4',
packages=find_packages(include=['lfimap', 'lfimap.*']),
package_dir={
'lfimap': 'lfimap',
},
package_data={
'lfimap': ['src/**/*'],
},
include_package_data=True,
install_requires=[
'argparse',
'bs4',
'pybase64',
'requests',
'urllib3'
],
entry_points={
'console_scripts': [
'lfimap = lfimap.lfimap:main',
],
},
author='@h4nsmach1ne',
author_email='[email protected]',
description='Local File Inclusion discovery and exploitation tool',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/hansmach1ne/LFImap',
license='Apache',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)