mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
13 lines
419 B
Python
13 lines
419 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='routersploit',
|
||
|
version='2.2.1',
|
||
|
author='Reverse Shell Security',
|
||
|
packages=['routersploit','routersploit.modules','routersploit.templates','routersploit.test','routersploit.wordlists',],
|
||
|
scripts=['rsf.py',],
|
||
|
license='BSD-3-clause',
|
||
|
long_description=open('README.md').read(),
|
||
|
install_requires=['requests','paramiko','beautifulsoup4','pysnmp'],
|
||
|
)
|