FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
voltron/setup.py at master · uranium62/voltron · GitHub
uranium62
/
voltron
Public
forked from
snare/voltron
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
voltron
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
33 lines (30 loc) · 789 Bytes
Breadcrumbs
voltron
/
setup.py
Copy path
File metadata and controls
executable file
·
33 lines (30 loc) · 789 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
sys
from
setuptools
import
setup
,
find_packages
requirements
=
[
'scruffington>=0.3.2'
,
'flask'
,
'flask_restful'
,
'blessed'
,
'pygments'
,
'requests'
,
'requests_unixsocket'
]
if
sys
.
platform
==
'win32'
:
requirements
.
append
(
'cursor'
)
setup
(
name
=
"voltron"
,
version
=
"0.1.2"
,
author
=
"snare"
,
author_email
=
"snare@ho.ax"
,
description
=
(
"A debugger UI"
),
license
=
"MIT"
,
keywords
=
"voltron debugger ui gdb lldb vdb vivisect vtrace windbg cdb pykd"
,
url
=
"https://github.com/snare/voltron"
,
packages
=
find_packages
(
exclude
=
[
'tests'
,
'examples'
]),
install_requires
=
requirements
,
package_data
=
{
'voltron'
: [
'config/*'
]},
entry_points
=
{
'console_scripts'
: [
'voltron=voltron:main'
]
},
zip_safe
=
False
)
Back
|
FazBrowse Home
|
New Git URL