Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
routersploit
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
czos-dpend
routersploit
Commits
b66271bb
Unverified
Commit
b66271bb
authored
Jun 16, 2018
by
Marcin Bury
Committed by
GitHub
Jun 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Python package configuration - setuptools (#444)
* Adding setup.py * Updating version to 3.1.0
parent
6d6d1726
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
0 deletions
+51
-0
setup.py
setup.py
+51
-0
No files found.
setup.py
0 → 100644
View file @
b66271bb
from
setuptools
import
setup
,
find_packages
with
open
(
"README.md"
,
"r"
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
"routersploit"
,
version
=
"3.1.0"
,
description
=
"Exploitation Framework for Embedded Devices"
,
long_description
=
long_description
,
author
=
"Threat9"
,
author_email
=
"marcin@threat9.com"
,
url
=
"https://www.threat9.com"
,
download_url
=
"https://github.com/threat9/routersploit/"
,
packages
=
find_packages
(),
include_package_data
=
True
,
entry_points
=
{},
install_requires
=
[
"future"
,
"requests"
,
"paramiko"
,
"pysnmp"
,
"pycrypto"
,
],
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"
,
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment