-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
setup.py
52 lines (49 loc) · 1.47 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="routersploit",
version="3.4.6",
description="Exploitation Framework for Embedded Devices",
long_description=long_description,
author="Threat9",
author_email="[email protected]",
url="https://www.threat9.com",
download_url="https://github.com/threat9/routersploit/",
packages=find_packages(),
include_package_data=True,
scripts=('rsf.py',),
entry_points={},
install_requires=[
"future",
"requests",
"paramiko",
"pysnmp",
"pycryptodome",
],
extras_require={
"tests": [
"pytest",
"pytest-forked",
"pytest-xdist",
"flake8",
],
},
classifiers=[
"Operating System :: POSIX",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Security",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
)