-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
56 lines (36 loc) · 1.64 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
50
51
52
53
54
55
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ntlmrecon', # Required
version='0.4b0', # Required
description='A tool to enumerate information from NTLM authentication enabled web endpoints', # Optional
license='MIT',
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/sachinkamath/ntlmrecon', # Optional
# This should be your name or the name of the organization which owns the
# project.
author='Sachin S Kamath (@sachinkamath)', # Optional
# This should be a valid email address corresponding to the author listed
# above.
author_email='[email protected]', # Optional
keywords='security recon redteam cybersecurity ntlm ntlmrecon', # Optional
package_dir={'': 'src'},
packages=find_packages(where='src'), # Required
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
install_requires=['requests', 'colorama', 'termcolor', 'iptools'], # TODO
# For example, the following would provide a command called `sample` which
# executes the function `main` from this package when invoked:
entry_points={ # Optional
'console_scripts': [
'ntlmrecon=ntlmrecon:main',
],
},
project_urls={ # Optional
'Bug Reports': 'https://github.com/sachinkamath/ntlmrecon/issues',
'Source': 'https://github.com/sachinkamath/ntlmrecon/',
},
)