Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yara-python
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
fact-depend
yara-python
Commits
1a950a27
Commit
1a950a27
authored
6 years ago
by
Victor M. Alvarez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add argument for enabling "dex" module.
parent
2c5babf2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
setup.py
setup.py
+4
-0
No files found.
setup.py
View file @
1a950a27
...
...
@@ -36,6 +36,7 @@ OPTIONS = [
(
'enable-cuckoo'
,
None
,
'enable "cuckoo" module'
),
(
'enable-magic'
,
None
,
'enable "magic" module'
),
(
'enable-dotnet'
,
None
,
'enable "dotnet" module'
),
(
'enable-dex'
,
None
,
'enable "dex" module'
),
(
'enable-profiling'
,
None
,
'enable profiling features'
)]
...
...
@@ -44,6 +45,7 @@ BOOLEAN_OPTIONS = [
'enable-cuckoo'
,
'enable-magic'
,
'enable-dotnet'
,
'enable-dex'
,
'enable-profiling'
]
...
...
@@ -96,6 +98,7 @@ class BuildCommand(build):
self
.
enable_magic
=
None
self
.
enable_cuckoo
=
None
self
.
enable_dotnet
=
None
self
.
enable_dex
=
None
self
.
enable_profiling
=
None
def
finalize_options
(
self
):
...
...
@@ -116,6 +119,7 @@ class BuildExtCommand(build_ext):
self
.
enable_magic
=
None
self
.
enable_cuckoo
=
None
self
.
enable_dotnet
=
None
self
.
enable_dex
=
None
self
.
enable_profiling
=
None
def
finalize_options
(
self
):
...
...
This diff is collapsed.
Click to expand it.
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