-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
35 lines (34 loc) · 938 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
import setuptools
from smbcrawler._version import __version__
setuptools.setup(
name='smbcrawler',
version=__version__,
author='Adrian Vollmer',
author_email='[email protected]',
url='https://github.com/SySS-Research/smbcrawler',
description='Search SMB shares for interesting files',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'smbcrawler=smbcrawler.__main__:main'
],
},
install_requires=[
'impacket>=0.9.20',
'python-libnmap',
'lxml',
'pdftotext',
'python-magic',
],
python_requires='>=3.5',
tests_require=[
'pytest',
'pyexpect',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
)